Files
game-cards/tests/test_training_controller.gd

14 lines
351 B
GDScript3
Raw Normal View History

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()