Exemple #1
0
        public void SendPushNotification(string message, List <string> playerIdList, Push.SendPushNotificationDelegate callback)
        {
            int    handlerNum   = pushCallback.SetSendPushNotificationCallback(callback);
            string playerIdJson = Internal.Utils.ToJson(playerIdList);

            pushAndroidClass.CallStatic("nmg_push_sendPushNotification", message, playerIdJson, handlerNum);
        }
Exemple #2
0
        public void SendPushNotification(string message, List <string> playerIdList, Push.SendPushNotificationDelegate callback)
        {
            string playerIdJson = Internal.Utils.ToJson(playerIdList);
            int    handlerNum   = pushCallback.SetSendPushNotificationCallback(callback);

            nmg_push_sendPushNotification(message, playerIdJson, handlerNum);
        }