Exemplo n.º 1
0
 public Bot(State state)
 {
     this.State = state;
     Name = "unset";
     ArmiesPerTurn = 5;
     MovesLastTurn = new List<Move> ();
     OwnedContinents = new HashSet<Continent> ();
 }
Exemplo n.º 2
0
        public Parser(Bot bot, State state)
        {
            Logger.Initialize ();

            this.Bot = bot;
            this.State = state;

            Logger.Info ("Parser:\tInitialized.");
        }
Exemplo n.º 3
0
        public Parser(Bot bot)
        {
            Logger.Initialize ();

            this.Bot = bot;
            State = new State ();

            Logger.Info ("Parser:\tInitialized.");
        }