11 lines
209 B
C#
11 lines
209 B
C#
using VRC.SDKBase;
|
|
|
|
namespace VRCPrefabs.CyanEmu
|
|
{
|
|
public interface ICyanEmuStationHandler
|
|
{
|
|
void OnStationEnter(VRCStation station);
|
|
void OnStationExit(VRCStation station);
|
|
}
|
|
}
|