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