HaeinLEE 4455ef085b [Feat] 기보데이터 저장과 불러오기 구현
GameCopy 씬에서 플레이한 데이터를 저장했다가 데이터로 돌놓기 테스트 완료
2025-03-17 14:01:43 +09:00

13 lines
326 B
C#

public class Enums
{
public enum GameResult{None, Win, Lose, Draw}
public enum PlayerType{None, PlayerA, PlayerB}
public enum StoneType{ None, Black, White }
public enum StoneState{ None, Selected, Blocked, LastPositioned }
public enum GameType{ None, SinglePlay, MultiPlay, Replay }
}