Esempio n. 1
0
 private void RunEvent(BloxEvent ev, params BloxEventArg[] args)
 {
     ev.GetReadyToRun(args);
     if (ev.canYield)
     {
         BloxGlobal.Instance.StartCoroutine(ev.RunYield());
     }
     else
     {
         ev.Run();
     }
 }