Esempio n. 1
0
 public static void SendGameExtData(string type, string jsonData)
 {
     if (Application.platform != RuntimePlatform.OSXEditor && Application.platform != RuntimePlatform.WindowsEditor)
     {
         JoyYouNativeInterface.AndroidInvoke("__ICommonSDKPlatform", "SendGameExtData", new object[]
         {
             type,
             jsonData
         });
     }
     else
     {
         JoyYouInterfaceSimulator.SendGameExtData(type, jsonData);
     }
 }