Exemple #1
0
 /// make async request for data type result
 private void CallWWW_resultData_async <T>(string address, WWWForm data, OnUserDataResultDelegate <T> callback, RequestType type)
     where T : class
 {
     MonoUtil.GetMainObj().StartCoroutine(CallWWW_resultData_asyncCR <T>(address, data, callback, type));
 }
Exemple #2
0
 /// make async request for boolean type result
 private void CallWWW_result_async(string address, WWWForm data, OnResultDelegate callback, RequestType type)
 {
     MonoUtil.GetMainObj().StartCoroutine(CallWWW_result_asyncCR(address, data, callback, type));
 }