DO-41 [Style] 주석 정리 및 Debug.Log 제거

This commit is contained in:
Lim0_C 2025-03-21 09:55:56 +09:00
parent 31b2ebee9f
commit b4d34bd3f2
2 changed files with 0 additions and 2 deletions

View File

@ -98,7 +98,6 @@ public class AIState: BasePlayerState
public override void OnEnter(GameLogic gameLogic) public override void OnEnter(GameLogic gameLogic)
{ {
gameLogic.fioTimer.StartTimer(); gameLogic.fioTimer.StartTimer();
//TODO: AI이식
OmokAI.Instance.StartBestMoveSearch(gameLogic.GetBoard(), (bestMove) => OmokAI.Instance.StartBestMoveSearch(gameLogic.GetBoard(), (bestMove) =>
{ {
if(bestMove.HasValue) if(bestMove.HasValue)

View File

@ -51,7 +51,6 @@ public class GameManager : Singleton<GameManager>
} }
else else
{ {
Debug.Log("착수 위치를 선택 해주세요");
//TODO: 착수할 위치를 선택하라는 동작 //TODO: 착수할 위치를 선택하라는 동작
} }
} }