10 lines
373 B
C#
10 lines
373 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;
|
|
} |