9 lines
132 B
C#
9 lines
132 B
C#
namespace Interactable
|
|
{
|
|
public interface IInteractable
|
|
{
|
|
void Interact();
|
|
void ResetInteraction();
|
|
}
|
|
}
|