public void RegisterCustomAction(IGameUINotifyEvent _customEvent)
        {
            if (customEvents == null)
            {
                customEvents = new List<IGameUINotifyEvent>();
            }
            customEvents.Add(_customEvent);

            OnChange();
        }
Beispiel #2
0
        public void RegisterCustomAction(IGameUINotifyEvent _customEvent)
        {
            if (customEvents == null)
            {
                customEvents = new List <IGameUINotifyEvent>();
            }
            customEvents.Add(_customEvent);

            OnChange();
        }