Inheritance: IDisposable
Example #1
0
 public static void Shutdown()
 {
     if (instance != null)
     {
         instance.Dispose();
         instance = null;
     }
 }
Example #2
0
 public static void Init()
 {
     if (instance == null)
     {
         instance = new SoundManager();
         instance.InitInstance();
     }
 }