18 lines
250 B
C#
18 lines
250 B
C#
namespace TRInventoryUpdatable
|
|
{
|
|
public interface InventoryUpdatable
|
|
{
|
|
void InventoryUpdate();
|
|
}
|
|
|
|
public interface IPickable
|
|
{
|
|
void Pickup();
|
|
}
|
|
|
|
public interface IUsable
|
|
{
|
|
void Use();
|
|
}
|
|
}
|