Exemplo n.º 1
0
 public virtual void removeInventoryItem(InventoryItemEntity inventoryItem)
 {
     inventory.Remove(inventoryItem);
 }
Exemplo n.º 2
0
 public virtual void addInventoryItem(InventoryItemEntity inventoryItem)
 {
     inventoryItem.ownerPersona = this;
     inventory.Add(inventoryItem);
 }