6 lines
169 B
GDScript
6 lines
169 B
GDScript
## Main.gd
|
|
## Root scene entry point. Boots into the game loop.
|
|
extends Node
|
|
|
|
func _ready() -> void:
|
|
get_tree().change_scene_to_file("res://scenes/main/GameLoop.tscn")
|