예제 #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
파일: RekrutEvent.cs 프로젝트: HTL-DWR/DWR
 public RekrutEvent(int duration, Truppen truppen) 
 {
     this.duration = duration;
     this.truppen = truppen;
 }
 public StatischesEventTruppenAusbildung(Truppen _truppen) {
     this.truppen = _truppen;
 }