Ejemplo n.º 1
0
 public void ExecuteCall(WebCallRoutineObject routineObject)
 {
     if (PostDictionary != null)
     {
         routineObject.StartCoroutine(POSTRoutine(routineObject));
     }
     else
     {
         routineObject.StartCoroutine(GETRoutine(routineObject));
     }
 }
Ejemplo n.º 2
0
 private static void OnLogOutDone()
 {
     mRoutineObject.StartCoroutine(ReloadScene());
 }