Class InventoryItem
Represents an item in an inventory.
Inheritance
System.Object
InventoryItem
Namespace: Mannequin.Bindings
Assembly: Collapse.dll
Syntax
public class InventoryItem : object
Constructors
InventoryItem(Item, Int32)
Create an equipment slot.
Declaration
public InventoryItem(Item item, int quantity = 1)
Parameters
Type | Name | Description |
---|---|---|
Item | item | The Item to place in this slot |
System.Int32 | quantity | The quanity of |
Properties
Item
The item.
Declaration
public Item Item { get; set; }
Property Value
Type | Description |
---|---|
Item |
Quantity
The quantity of this item.
Declaration
public int Quantity { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |