示例#1
0
文件: DorfMap.cs 项目: HTL-DWR/DWR
 public DorfMap()
 {
     this.id = -1;
     this.name = "noname";
     this.owner = "noname";
     this.clan = "";
     this.x = -1;
     this.y = -1;
     this.truppen = new Truppen();
 }
示例#2
0
文件: DorfMap.cs 项目: HTL-DWR/DWR
 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;
 }
示例#3
0
 public Unterstuezung(Spieler _unterstuetzer, Truppen _truppen) {
     this.unterstuetzer = _unterstuetzer;
     this.truppen = _truppen;
 }
示例#4
0
 public RekrutEvent(int duration, Truppen truppen) 
 {
     this.duration = duration;
     this.truppen = truppen;
 }
 public StatischesEventTruppenAusbildung(Truppen _truppen) {
     this.truppen = _truppen;
 }