Example #1
0
 public static void Initialize()
 {
     roomProfiles    = new RoomProfile[1];
     roomProfiles[0] = new RoomProfile(2, 2);
 }
Example #2
0
 public ModelRoom(int width, int height, decimal ruinState, string indexNumber, RoomType roomType, RoomProfile roomProfile, bool hasSecretEntrance)
 {
     this.Width             = width;
     this.Height            = height;
     this.RuinState         = ruinState;
     this.IndexNumber       = indexNumber;
     this.RoomType          = roomType;
     this.RoomProfile       = roomProfile;
     this.HasSecretEntrance = hasSecretEntrance;
 }