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