コード例 #1
0
ファイル: Bot.cs プロジェクト: Snellingen/TetrisBot
 public Bot()
 {
     MatchSettings = new MatchSettings();
     GameState = new GameState();
     Players = new Dictionary<string, PlayerState>();
     RouteCommand<BotCommand>(ReceiveCommand);
 }
コード例 #2
0
ファイル: Bot.cs プロジェクト: TravisTX/AIBlockBattleBot
        public Bot()
        {
            MatchSettings = new MatchSettings();
            GameState     = new GameState();
            Players       = new Dictionary <string, PlayerState>();

            RouteCommand <BotCommand>(ReceiveCommand);
        }