Files
OMG/Assets/Scripts/IInteractable.cs

6 lines
194 B
C#

public interface IInteractable
{
// Átadjuk a playert, hogy tudjuk, mivel interaktál
void Interact(PlayerInteraction player);
string GetInteractionText(PlayerInteraction player);
}