Example #1
0
func MusicPlaying() bool {
	return int(C.Mix_PlayingMusic()) > 0
}
Example #2
0
// Check the status of the playing music.
func PlayingMusic() (int) { 
  return int(C.Mix_PlayingMusic())
}
Example #3
0
// Returns 1 if music is currently playing and 0 if not.
func PlayingMusic() int { return int(C.Mix_PlayingMusic()) }
Example #4
0
func Playing() bool { return C.Mix_PlayingMusic() == 1 }