wxr
2024-08-06 c2cae389c932a9ab2c03d67d0276376655f26343
HDL-ON_iOS/Other/SoundPlayer.cs
@@ -6,7 +6,7 @@
{
   public class SoundPlayer
   {
        private AVAudioPlayer player;
        public AVAudioPlayer player;
        private static SoundPlayer _soundPlayer;
        public static SoundPlayer Ins
@@ -49,10 +49,13 @@
        public void StopSound()
        {
            if (_soundPlayer.player != null)
            {
            _soundPlayer.player.Stop();
            _soundPlayer.player.Dispose();
            _soundPlayer = null;
        }
        }
    }
}