8-4-25 @ 2:42 am

This commit is contained in:
2025-08-04 02:42:51 -04:00
parent 50e4f8fcb5
commit 7f65338679
15 changed files with 357 additions and 250 deletions

View File

@@ -15,6 +15,8 @@ public partial class Main : Node
_currentBattle = GetNode<Battle>("Battle");
_player = GetNode<PlayerManager>("Player");
_computer = GetNode<ComputerManager>("Computer");
_player._opponent = _computer;
_computer._opponent = _player;
_currentBattle.Start(_player, _computer);
_player.Start();