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

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

            Logger.Info ("Parser:\tInitialized.");
        }
Example #3
0
        public Parser(Bot bot)
        {
            Logger.Initialize ();

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

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