Beispiel #1
0
 public Case(Occupant occupant, int coordX, int coordY)
 {
     this.occupant = occupant;
     this.coordX   = coordX;
     this.coordY   = coordY;
 }
Beispiel #2
0
 public Exit(Occupant occupant, int posX, int posY)
     : base(occupant, posX, posY)
 {
 }
Beispiel #3
0
 public Wall(Occupant occupant, int posX, int posY)
     : base(occupant, posX, posY)
 {
 }