Exemplo n.º 1
0
        public void Cancel()
        {
            m_started = false;

            if (m_timer != null)
            {
                m_timer.Dispose();
            }
        }
Exemplo n.º 2
0
 public virtual void RemoveTimer(TimedTimerEntry timer)
 {
     ExecuteInContext(() =>
     {
         m_timers.Remove(timer);
         timer.Dispose();
     });
 }
Exemplo n.º 3
0
        public void Cancel(bool disposePopup = true)
        {
            if (m_timer != null)
            {
                m_timer.Dispose();
            }

            if (disposePopup)
            {
                Character.ArenaPopup = null;
            }
            // send something ?
        }