Game Analytics

In case some analytics data need to be send to WinZO, use the below method of the WinzoEventManager class and send data to WinZO.

WinzoEventManager.SendAnalyticsToWinzo("EventName",dict);

For Example:

Dictionary<string, object> dict = new Dictionary<string,object>();
 dict.add("difficulty", 1);  dict.add("level", 2);
 // Add your data in dict then send
 WinzoEventManager.SendAnalyticsToWinzo("Example_EventName",dict);

Last updated