Afterparty/Assets/Scripts/IInteractable.cs
2026-01-11 17:04:23 +03:00

5 lines
85 B
C#

public interface IInteractable
{
void Interact();
string GetDescription();
}