public static void Call(Callable call, GameObject instigator = null)
 {
     if (call != null)
     {
         call.Execute(instigator);
     }
     else
     {
         Debug.LogError("Cannot execute call: Null or Missing");
     }
 }
Exemplo n.º 2
0
 public static void Call(Callable call)
 {
     call.Execute();
 }