123456789101112131415161718 |
- using System.Collections.Generic;
- namespace GFGGame
- {
- public class RedDotDataManager : SingletonBase<RedDotDataManager>
- {
- public bool GetNoticeRed()
- {
- List<NoticeInfo> noticeInfos = NoticeDataManager.Instance.NoticeInfos;
- for (int i = 0; i < noticeInfos.Count; i++)
- {
- if (noticeInfos[i].readStatus == false) return true;
- }
- return false;
- }
- }
- }
|