public class Constants
{
    public const string ServerURL = "http://localhost:3000";
    public const string GameServerURL = "ws://localhost:3000";
    public const int BoardSize = 15;
    public const int ReplayMaxRecordSize = 10;
    public const int WIN_COUNT = 5;
    //무승부 확인을 위한 최소 착수 수
    public const int MinCountForDrawCheck = 150;
    public const int RAING_POINTS = 10;
    
    public string[] AI_NAMIES = { "이세돌",  "신사동호랭이","진짜인간임","종로3가짱돌","마스터김춘배","62세황순자","고준일 강사님"};
}