コード例 #1
0
ファイル: sdl_mixer.go プロジェクト: flazz/go-sdl2
func MusicPlaying() bool {
	return int(C.Mix_PlayingMusic()) > 0
}
コード例 #2
0
ファイル: mixer.go プロジェクト: beoran/fungo
// Check the status of the playing music.
func PlayingMusic() (int) { 
  return int(C.Mix_PlayingMusic())
}
コード例 #3
0
ファイル: mixer.go プロジェクト: paul-lalonde/Go-SDL
// Returns 1 if music is currently playing and 0 if not.
func PlayingMusic() int { return int(C.Mix_PlayingMusic()) }
コード例 #4
0
ファイル: music.go プロジェクト: swantescholz/coding
func Playing() bool { return C.Mix_PlayingMusic() == 1 }