public void ClearAllNotifications()
 {
     adminNotification?.ClearAll();
     mentorNotification?.ClearAll();
     playerNotification?.ClearAll();
     prayerNotification?.ClearAll();
 }
Пример #2
0
        public void RefreshNotification()
        {
            if (parentNotification == null)
            {
                return;
            }

            if (parentNotification.notifications.ContainsKey(PlayerData.uid))
            {
                pendingMsgNotification.ClearAll();
                pendingMsgNotification.AddNotification(PlayerData.uid,
                                                       parentNotification.notifications[PlayerData.uid]);
            }
            else
            {
                pendingMsgNotification.ClearAll();
            }
        }
Пример #3
0
 public void ClearAllNotifications()
 {
     notifications.ClearAll();
 }