public static MP3PlayerWrapper getMP3PlayerWrapper()
 {
     if (m_MP3PlayerWrapperInstance == null)
     {
         m_MP3PlayerWrapperInstance = new MP3PlayerWrapper();
     }
     return(m_MP3PlayerWrapperInstance);
 }
 void OpenTrainingMusic()
 {
     if (m_MP3PLayer == null)
     {
         m_MP3PLayer = new MP3PlayerWrapper();
     }
     m_MP3PLayer.MP3Filename = m_MusicPath;
 }
 public static MP3PlayerWrapper getMP3PlayerWrapper()
 {
     if(m_MP3PlayerWrapperInstance == null)
         m_MP3PlayerWrapperInstance = new MP3PlayerWrapper();
     return m_MP3PlayerWrapperInstance;
 }
 public MP3VideoWrapper(string videoPath, Panel ownerPanel)
 {
     m_Mp3Player = MP3PlayerWrapper.getMP3PlayerWrapper();
     m_Mp3Player.MP3Filename = videoPath;
 }