Exemple #1
0
 public static void ShowEvent(string eventKey, Action <bool, string> callback)
 {
     KGSupport.ShowEventView(
         eventKey,
         (result, deepLinkUrl) => {
         if (callback != null)
         {
             callback(result.isSuccess, deepLinkUrl);
         }
     });
 }
Exemple #2
0
 public static void ShowEvent(string eventKey)
 {
     KGSupport.ShowEventView(eventKey);
 }