Files
Silly-Home/Packages/com.vrchat.worlds/Runtime/Udon/EventProxies/AbstractUdonBehaviourEventProxy.cs
2026-06-07 16:58:24 +01:00

12 lines
226 B
C#

using UnityEngine;
using VRC.Udon.Common.Interfaces;
namespace VRC.Udon
{
internal abstract class AbstractUdonBehaviourEventProxy : MonoBehaviour
{
public UdonBehaviour EventReceiver { get; set; }
}
}