コード例 #1
0
        public static void FireNotSupportedAPI(object classObj, GamebaseCallback.VoidDelegate callback, [System.Runtime.CompilerServices.CallerMemberName] string methodName = "")
        {
            if (callback == null)
            {
                return;
            }

            GamebaseLog.Warn(string.Format("{0}", CreateNotSupportedMessage()), classObj, methodName);
            callback();
        }
コード例 #2
0
        public static void FireNotSupportedAPI(object classObj, string methodName, GamebaseCallback.VoidDelegate callback)
        {
            if (callback == null)
            {
                return;
            }

            GamebaseLog.Warn(string.Format("{0}", CreateNotSupportedMessage()), classObj, methodName);
            callback();
        }
        public void ShowAlert(string title, string message, GamebaseCallback.VoidDelegate buttonCallback)
        {
            int handle = GamebaseCallbackHandler.RegisterCallback(buttonCallback);

            util.ShowAlert(title, message, handle);
        }