Ejemplo n.º 1
0
 public CharacterInfoModel(InventoryItemsModel items, string user)
 {
     this.items     = items;
     this.Localuser = user;
     Rebuild();
 }
Ejemplo n.º 2
0
        /*
         * The WeaponInfo Constructor that encapsulates the current weapon.
         *  @Param items: the inventory items class
         *  Returns Nothing
         */

        public WeaponInfoModel(InventoryItemsModel items)
        {
            this.items = items;
            Rebuild();
        }
Ejemplo n.º 3
0
 public ShopModel(InventoryItemsModel Inv)
 {
     this.Inv = Inv;
     Rebuild();
 }