예제 #1
0
        public static void AddNotice(InformationData data)
        {
            Action <InformationData> onAddMapNotice = InformationManager.OnAddMapNotice;

            if (onAddMapNotice == null)
            {
                return;
            }
            onAddMapNotice(data);
        }
예제 #2
0
        public static void MapNoticeRemoved(InformationData data)
        {
            Action <InformationData> onRemoveMapNotice = InformationManager.OnRemoveMapNotice;

            if (onRemoveMapNotice == null)
            {
                return;
            }
            onRemoveMapNotice(data);
        }