Пример #1
0
 public void OnRemoveFromGround(ItemObject itemObject)
 {
     Debug.Log("RemoveFromGround " + Name);
     itemObject.DestroySelf();
 }
Пример #2
0
 public void OnUse(AttributeController playerStats, ItemObject itemObject)
 {
     Debug.Log("Use " + Name);
     ApplyBuff(playerStats);
     itemObject.DestroySelf();
 }