DO-8 병합 전 커밋2

This commit is contained in:
Lim0_C 2025-03-14 10:24:40 +09:00
parent 6987ca6376
commit cbcf3b8619

View File

@ -58,6 +58,8 @@ public class GameLogic : MonoBehaviour
_stoneController.SetStoneState(Enums.StoneState.LastPositioned, row, col);
_board[row, col] = Enums.PlayerType.PlayerA;
LastNSelectedSetting(row, col);
SetState(Enums.PlayerType.PlayerB);
}
if (playerType == Enums.PlayerType.PlayerB)
{
@ -66,6 +68,7 @@ public class GameLogic : MonoBehaviour
_board[row, col] = Enums.PlayerType.PlayerB;
LastNSelectedSetting(row, col);
SetState(Enums.PlayerType.PlayerA);
}
}
}