Example #1
0
 public DropItem(DropType type, int count, InventoryItemData itemData = null)
 {
     this.type     = type;
     this.count    = count;
     this.itemData = itemData;
 }
Example #2
0
 public InventoryItem(InventoryItemData data, int count)
 {
     this.data  = data;
     this.count = count;
 }