예제 #1
0
        void TestDebugInLog(string str)
        {
            ArgsMsgTest args = new ArgsMsgTest();

            args.testStr = str;
            NotificationCenter.Instance().PostDispatchEvent((uint)ENotificationMsgType.ENull, args);
        }
예제 #2
0
    void TestReceveMsg(LocalNotification e)
    {
        ArgsMsgTest args = e.param as ArgsMsgTest;

        HangleLog("=======================================" + args.testStr, "DDDDDDDDDDD", LogType.Log);
    }