예제 #1
0
        public void Stop()
        {
            IsDone = true;

            if (Handler != null)
            {
                Handler.Stop();
            }
        }
예제 #2
0
파일: Ability.cs 프로젝트: wardev1/WarEmu-1
        public void Stop()
        {
            IsDone = true;

            if (Handler != null)
            {
                Handler.Stop();
                Handler = null;
            }

            SendStop();
            if (Info.Info.ApSec != 0)
            {
                SendAbilityDone(0);
            }
        }