Пример #1
0
 public void DropItem()
 {
     if (held_item != null)
     {
         held_item.Drop();
         held_item = null;
     }
 }
Пример #2
0
 public void DropItem()
 {
     if (carry_item != null)
     {
         carry_item.Drop();
     }
     carry_item      = null;
     take_item_timer = -0.2f;
 }