Merge branch 'main' into DO-72-버튼-연타-버그-픽스

This commit is contained in:
Sehyeon 2025-03-27 17:30:32 +09:00
commit 957fffb36f

View File

@ -109,6 +109,7 @@ public class ReplayManager : Singleton<ReplayManager>
public void RecordStonePlaced(Enums.StoneType stoneType,int row, int col) public void RecordStonePlaced(Enums.StoneType stoneType,int row, int col)
{ {
string stoneColor = stoneType.ToString(); string stoneColor = stoneType.ToString();
if (_recordingReplayData == null) return;
_recordingReplayData.moves.Add(new Move(stoneColor, row, col)); _recordingReplayData.moves.Add(new Move(stoneColor, row, col));
} }