Exemplo n.º 1
0
 public void Remove(PlayerInventoryItem item)
 {
     items.Remove(item.Id);
 }
Exemplo n.º 2
0
 public void Add(PlayerInventoryItem item)
 {
     Debug.Log($"Adding {item.Name}");
     items[item.Id] = item;
 }