Example #1
0
 public House(int RoomId, int OwnerId, int Cost, bool ForSale, string[] Upgrades, bool IsLocked, HouseSign Sign)
 {
     this.RoomId   = RoomId;
     this.OwnerId  = OwnerId;
     this.Cost     = Cost;
     this.ForSale  = ForSale;
     this.Upgrades = Upgrades;
     this.IsLocked = IsLocked;
     this.Sign     = Sign;
 }