blob: 8dc6635a0866955d38e15e7bb59e6a6f9b5ae524 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
using UnityEngine;
using VRC.Udon.Common.Interfaces;
namespace VRC.Udon
{
internal abstract class AbstractUdonBehaviourEventProxy : MonoBehaviour
{
public UdonBehaviour EventReceiver { get; set; }
}
}
|