Ejemplo n.º 1
0
 public DorfMap()
 {
     this.id = -1;
     this.name = "noname";
     this.owner = "noname";
     this.clan = "";
     this.x = -1;
     this.y = -1;
     this.truppen = new Truppen();
 }
Ejemplo n.º 2
0
 public DorfMap(int id, String name, String owner, String clan, int x, int y,
         Truppen truppen)
 {
     this.id = id;
     this.name = name;
     this.owner = owner;
     this.clan = clan;
     this.x = x;
     this.y = y;
     this.truppen = truppen;
 }
Ejemplo n.º 3
0
 public Unterstuezung(Spieler _unterstuetzer, Truppen _truppen) {
     this.unterstuetzer = _unterstuetzer;
     this.truppen = _truppen;
 }
Ejemplo n.º 4
0
 public RekrutEvent(int duration, Truppen truppen) 
 {
     this.duration = duration;
     this.truppen = truppen;
 }
 public StatischesEventTruppenAusbildung(Truppen _truppen) {
     this.truppen = _truppen;
 }