SummerDay/addons/summer_day/data/blueprint/blueprint.gd
2021-12-19 22:26:09 +01:00

21 lines
366 B
GDScript

# This class can be abstracted and is meant to handle the drawing workflow
# of each individual model.
tool
extends Resource
class_name SummerDayBlueprint
var active = true # Not handled right now.
func _create_model() -> PackedScene: # Virtual.
return null
func _create_cell() -> SummerDayCell: # Virtual.
return null
func _input(event): # Virtual.
pass