Exemplo n.º 1
0
    public void HandleEvent(int eventId, IEventArgs args)
    {
        Debug.LogFormat("i am 02  get event {0}", eventId);

        switch (eventId)
        {
        case EventId.DebugLogWarning:
        {
            if (args != null)
            {
                Debug.LogWarningFormat("i am 02 ,get msg : {0}", args.GetCValue <string>());
            }
        }

        break;
        }
    }