Advertisement
Guest User

Untitled

a guest
Jun 26th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.28 KB | None | 0 0
  1. using ThiefGame;
  2.  
  3. public ButtonScript : MonoBehavior
  4. {
  5.     public ListScript Owner;
  6.     public string ID;
  7.  
  8.     public ButtonScript(ListScript owner, string id)
  9.     {
  10.         Owner = owner;
  11.         ID = id;
  12.     }
  13.  
  14.     public void RemoveItem()
  15.     {
  16.         Inventory.RemoveItem(ID);
  17.         Owner.FillList();
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement