slowpoker/Assets/Scripts/Interactive/IInteractable.cs

11 lines
139 B
C#
Raw Normal View History

2024-10-17 23:09:51 +03:00
namespace Interactive
{
interface IInteractable
{
void Interact();
2024-10-19 02:54:12 +03:00
void LookAt();
void LookOut();
2024-10-17 23:09:51 +03:00
}
}