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