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