예제 #1
0
        /**
         * @brief Whether the background music is playing
         * @return If is playing return true,or return false
         */

        public bool IsBackgroundMusicPlaying()
        {
            if (_NoAudioHardware)
            {
                return(false);
            }
            return(SharedMusic.IsPlaying());
        }
        /**
         * @brief Whether the background music is playing
         * @return If is playing return true,or return false
         */

        public bool IsBackgroundMusicPlaying()
        {
            return(SharedMusic.IsPlaying());
        }