2022-02-22 21:59:55 +03:00

9 lines
132 B
C#

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