DarkEmu_GameServer.Systems.StopMovementTimer C# (CSharp) Метод

StopMovementTimer() публичный Метод

public StopMovementTimer ( ) : void
Результат void
        public void StopMovementTimer()
        {
            try
            {
                Character.Position.Walking = false;
                if (Timer.Movement != null)
                    Timer.Movement.Dispose();
            }
            catch (Exception)
            {
            }
        }
Systems