BGJ-2022.1/Assets/Scripts/Interactable/IInteractable.cs

9 lines
132 B
C#

namespace Interactable
{
public interface IInteractable
{
void Interact();
void ResetInteraction();
}
}