ModelViewer.Sound.SoundManager.Shutdown C# (CSharp) Method

Shutdown() public static method

public static Shutdown ( ) : void
return void
        public static void Shutdown()
        {
            if (instance != null)
            {
                instance.Dispose();
                instance = null;
            }
        }