コード例 #1
0
ファイル: GameAI.cs プロジェクト: Tic-Tac-Toc/windbot
        public GameAI(GameClient game, Duel duel)
        {
            Game = game;
            Duel = duel;
            Utils = new AIFunctions(duel);

            _dialogs = new Dialogs(game);
        }
コード例 #2
0
ファイル: GameAI.cs プロジェクト: 247321453/YgoServer
        public GameAI(AIGameClient game, Duel duel)
        {
            Game = game;
            Connection = game.Connection;
            Duel = duel;
            Utils = new AIFunctions(duel);

            _dialogs = new Dialogs(game);
        }