Пример #1
0
    public override void HandleNotification(INotification notification)
    {
        var body = notification.Body;

        switch (notification.Name)
        {
        case NotificationConstant.LevelUp:
            Debug.Log("Level Up!!");
            break;

        case NotificationConstant.MatchResponse:
            m_viewComponent.OnResponseMatch((int)body);
            break;

        default:
            break;
        }
    }