Exemplo n.º 1
0
        protected GameBot(CGameField gameField, Sign botSign, Color botColor, int fieldSize)
        {
            BotColor  = botColor;
            FieldSize = fieldSize;
            BotSign   = botSign;
            GameField = gameField;

            MyPlayerId = PlayerIdGenerator.GetNewPlayerId();
        }
Exemplo n.º 2
0
 public CenterBot(CGameField gameField, Sign botSign, Color botColor, int fieldSize) : base(gameField, botSign, botColor, fieldSize)
 {
 }