2022-02-02 18:13:48 +01:00

10 lines
206 B
C#

namespace VRCPrefabs.CyanEmu
{
public interface ICyanEmuInteractable
{
float GetProximity();
bool CanInteract();
string GetInteractText();
void Interact();
}
}