Example #1
0
 public Army(Hex hex, Faction owner)
 {
     this.hex      = hex;
     this.owner    = owner;
     this.position = hex.position;
 }
Example #2
0
 public void Reconstruct()
 {
     /* Setup this.hex reference */
     this.hex = Core.map.hexList[this.hexIndex];
     this.StartCapture();
 }