Esempio n. 1
0
 public Room(UXSystem system, uint id, Room parentRoom)
 {
     this.System    = system;
     this.ID        = id;
     this._Name     = "";
     this._Location = "";
     this.System.Rooms.Add(this);
     this.ParentRoom = parentRoom;
 }
Esempio n. 2
0
 public Room(UXSystem system, uint id)
     : this(system, id, null)
 {
 }