Exemplo n.º 1
0
 public InventoryItem Unstore(InventoryItem item)
 {
     items.Remove (item);
     return item;
 }
 public PositionItemPair(Vector3 position, InventoryItem item)
 {
     this.Position = position;
     this.Item = item;
 }
Exemplo n.º 3
0
 public void Store(InventoryItem inventoryItem)
 {
     items.Add (inventoryItem);
 }