2024-10-19 02:54:12 +03:00

11 lines
139 B
C#

namespace Interactive
{
interface IInteractable
{
void Interact();
void LookAt();
void LookOut();
}
}