Example #1
0
 public static void ShowNotice(Action <bool, string> callback)
 {
     KGSupport.ShowNoticeViewForOneDay(
         (result, deepLinkUrl) => {
         if (callback != null)
         {
             callback(result.isSuccess, deepLinkUrl);
         }
     });
 }
Example #2
0
 public static void ShowGachaOdds(Action <bool, string> callback)
 {
     KGSupport.ShowGachaOddsView(
         (result, deepLinkUrl) => {
         if (callback != null)
         {
             callback(result.isSuccess, deepLinkUrl);
         }
     });
 }
Example #3
0
 public static void ShowCustomerCenter(Action <bool, string> callback)
 {
     KGSupport.ShowCSView(
         (result, deepLinkUrl) => {
         if (callback != null)
         {
             callback(result.isSuccess, deepLinkUrl);
         }
     });
 }
Example #4
0
 public static void ShowInAppWeb(string url, Action <bool, string> callback)
 {
     KGSupport.ShowInAppWebView(
         url,
         (result, deepLinkUrl) => {
         if (callback != null)
         {
             callback(result.isSuccess, deepLinkUrl);
         }
     });
 }
Example #5
0
 public static void ShowCommunity(long articleId, Action <bool, string> callback)
 {
     KGSupport.ShowCommunityView(
         articleId,
         (result, deepLinkUrl) => {
         if (callback != null)
         {
             callback(result.isSuccess, deepLinkUrl);
         }
     });
 }
Example #6
0
 public static void ShowEvent(string eventKey, Action <bool, string> callback)
 {
     KGSupport.ShowEventView(
         eventKey,
         (result, deepLinkUrl) => {
         if (callback != null)
         {
             callback(result.isSuccess, deepLinkUrl);
         }
     });
 }
Example #7
0
 public static void ShowAnnouncement(string noticeKey, Action <bool, string> callback)
 {
     KGSupport.ShowNoticeView(
         noticeKey,
         (result, deepLinkUrl) => {
         if (callback != null)
         {
             callback(result.isSuccess, deepLinkUrl);
         }
     });
 }
Example #8
0
 public static void ShowEvent(string eventKey)
 {
     KGSupport.ShowEventView(eventKey);
 }