Exemple #1
0
 public void createTerritory()
 {
     this.territory = new Territory();
 }
Exemple #2
0
 public override void getWood(Territory territory, int amount)
 {
 }
Exemple #3
0
 public Nation(Territory territory, int gold)
 {
     this.territory   = territory;
     this.gold        = gold;
     this.inhabitants = new List <Unit>();
 }
Exemple #4
0
 public override void getWood(Territory territory, int amount)
 {
     territory.forest.area -= amount;
 }
Exemple #5
0
 abstract public void getWood(Territory territory, int amount);