Beispiel #1
0
 void SetEventVecIntArg(ref UnityEventVecIntArg u)
 {
     if (u == null)
     {
         u = new UnityEventVecIntArg();
     }
 }
Beispiel #2
0
 static public void InvokeVecIntArg(ref UnityEventVecIntArg u, Vector2 a, int b)
 {
     if (u != null)
     {
         u.Invoke(a, b);
     }
 }