Пример #1
0
        public static GameInfo SimpleShusakuInfo()
        {
            var info = new GameInfo();
            info.Name = "Fuseki Shusaku";

            info.WhitePlayerName = "white";
            info.WhitePlayerRank = "9p";

            info.BlackPlayerName = "black";
            info.BlackPlayerRank = "9p";

            info.Place = "Perm";
            info.Description = "Test";
            info.GameResult = "unfinished";

            info.Date = new DateTime(2013, 05, 04);

            return info;
        }
Пример #2
0
 public GoGame(GameInfo info, GameNode node)
 {
     GameTree = node;
     GameInfo = info;
 }