Beispiel #1
0
 void SetEventIntArg(ref UnityEventIntArg u)
 {
     if (u == null)
     {
         u = new UnityEventIntArg();
     }
 }
Beispiel #2
0
 static public void InvokeIntArg(ref UnityEventIntArg u, int a)
 {
     if (u != null)
     {
         u.Invoke(a);
     }
 }