예제 #1
0
파일: Room.cs 프로젝트: uxav/UX-Simpl-Sharp
 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;
 }
예제 #2
0
파일: Room.cs 프로젝트: uxav/UX-Simpl-Sharp
 public Room(UXSystem system, uint id)
     : this(system, id, null)
 {
 }