コード例 #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)
 {
 }