Exemplo n.º 1
0
        public static void AddNotice(InformationData data)
        {
            Action <InformationData> onAddMapNotice = InformationManager.OnAddMapNotice;

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

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