Exemplo n.º 1
0
 public void GiveItems(ITMPlayer player)
 {
     foreach (InventoryItem item in this.GetItems())
     {
         player.AddToInventory(item);
     }
 }
Exemplo n.º 2
0
 public void GiveSet(ITMPlayer player)
 {
     player.AddToInventory(new InventoryItem(this.GetSetItem(), 1));
 }