7 lines
139 B
GDScript
7 lines
139 B
GDScript
extends Control
|
|
|
|
@export_file("*.tscn") var game_scene_path : String
|
|
|
|
func on_new_game() -> void:
|
|
SceneLoader.load_scene(game_scene_path)
|