public Bot(State state) { this.State = state; Name = "unset"; ArmiesPerTurn = 5; MovesLastTurn = new List<Move> (); OwnedContinents = new HashSet<Continent> (); }
public Parser(Bot bot, State state) { Logger.Initialize (); this.Bot = bot; this.State = state; Logger.Info ("Parser:\tInitialized."); }
public Parser(Bot bot) { Logger.Initialize (); this.Bot = bot; State = new State (); Logger.Info ("Parser:\tInitialized."); }