12 lines
546 B
C#
12 lines
546 B
C#
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 string[] AI_NAMIES = { "이세돌", "신사동호랭이","진짜인간임","종로3가짱돌","마스터김춘배","62세황순자","고준일 강사님"};
|
|
} |