namespace TRInventoryUpdatable { public interface InventoryUpdatable { void InventoryUpdate(); } public interface IPickable { void Pickup(); } public interface IUsable { void Use(); } }