コード例 #1
0
ファイル: GameManager.cs プロジェクト: joshharvey1984/Tactics
 public void StartUnitTurn(Unit unit)
 {
     _infoBar.SetPlayerTurn(currentRound, playerNames[currentGangTurn]);
     Unit.ActiveUnit = unit;
     ResetTimer();
     MoveGrid.ResetMovedGrid();
     unit.StartTurn();
 }