DarkEmu_GameServer.Systems.StopSkyDromeTimer C# (CSharp) 메소드

StopSkyDromeTimer() 공개 메소드

public StopSkyDromeTimer ( ) : void
리턴 void
        void StopSkyDromeTimer()
        {
            Character.Information.SkyDroming = false;

            if (Timer.SkyDrome != null)
            {
                Timer.SkyDrome.Dispose();
                Timer.SkyDrome = null;
            }
        }
Systems