public CharacterInfoModel(InventoryItemsModel items, string user) { this.items = items; this.Localuser = user; Rebuild(); }
/* * The WeaponInfo Constructor that encapsulates the current weapon. * @Param items: the inventory items class * Returns Nothing */ public WeaponInfoModel(InventoryItemsModel items) { this.items = items; Rebuild(); }
public ShopModel(InventoryItemsModel Inv) { this.Inv = Inv; Rebuild(); }