14 lines
351 B
GDScript3
14 lines
351 B
GDScript3
|
|
extends SceneTree
|
||
|
|
|
||
|
|
func _initialize():
|
||
|
|
var t = load("res://src/game/game_controller.gd")
|
||
|
|
if t:
|
||
|
|
print("GameController loaded: ", t)
|
||
|
|
else:
|
||
|
|
print("FAIL: GameController not found")
|
||
|
|
var tc = load("res://src/game/training_controller.gd")
|
||
|
|
if tc:
|
||
|
|
print("TrainingController loaded: ", tc)
|
||
|
|
else:
|
||
|
|
print("FAIL: TrainingController not found")
|
||
|
|
quit()
|