11 lines
247 B
GDScript
11 lines
247 B
GDScript
extends Node2D
|
|
|
|
#@export var initial_map: PackedScene
|
|
#
|
|
#@onready var world: Node2D = $World
|
|
#
|
|
## Called when the node enters the scene tree for the first time.
|
|
#func _ready() -> void:
|
|
#var map := initial_map.instantiate()
|
|
#world.add_child(map)
|