Exemplo n.º 1
0
 public static void UnloadEvents(params string[] paths)
 {
     foreach (string text in paths)
     {
         if (text != null)
         {
             FMOD_Listener.UnPreload(text);
         }
     }
 }
Exemplo n.º 2
0
 public static void UnloadEvents(params string[] paths)
 {
     for (int i = 0; i < paths.Length; i++)
     {
         string text = paths[i];
         if (text != null)
         {
             FMOD_Listener.UnPreload(text);
         }
     }
 }