Files
HauntedBloodlines/Assets/Scripts/Inventory/Items/InventoryUpdatable.cs
2025-05-29 22:31:40 +03:00

18 lines
250 B
C#

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