public void Place(IPickable item)
 {
     Debug.Log("Placing " + item.ToString() + " into " + this.ToString());
     this.items.Add(item);
 }