slowpoker/Assets/Scripts/Interactive/IInteractable.cs

7 lines
90 B
C#
Raw Normal View History

2024-10-17 23:09:51 +03:00
namespace Interactive
{
interface IInteractable
{
void Interact();
}
}