Exemple #1
0
        internal Outpost(Player player) : base(StructureSize.BIG)
        {
            this.player = player;

            structures = new List <Structure>();

            //

            armyInside = new ArmyPack(this);
        }
Exemple #2
0
 public BattleEngagement(ArmyPack hostPack, ArmyPack guestPack)
 {
     this.hostPack  = hostPack;
     this.guestPack = guestPack;
 }
Exemple #3
0
 public ArmyMarch(ref Player player, ref Spot origin, ref Spot destination, ref ArmyPack pack)
     : base(ref player, ref origin, ref destination)
 {
     this.pack = pack;
 }
 public SchoolBuilding(ref ArmyPack outpostArmyPack) : base(StructureSize.BIG)
 {
     this.outpostArmyPack  = outpostArmyPack;
     this.trainingArmyPack = new TrainingPack(this);
 }