Party progress

This commit is contained in:
2026-01-10 23:00:05 -06:00
parent 6f036aac77
commit 78cc69bffe
15 changed files with 276 additions and 82 deletions

View File

@@ -1 +1,10 @@
class_name BattleSingleton extends Node
class_name BattleSingleton extends Node
var battleScene:BattleScene = null
func startBattle(
fighters:Dictionary[BattleScene.BattlePosition, BattleFighter]
) -> void:
assert(battleScene != null)
battleScene.startBatle(fighters
)