10 lines
206 B
C#
10 lines
206 B
C#
namespace VRCPrefabs.CyanEmu
|
|
{
|
|
public interface ICyanEmuInteractable
|
|
{
|
|
float GetProximity();
|
|
bool CanInteract();
|
|
string GetInteractText();
|
|
void Interact();
|
|
}
|
|
} |