예제 #1
0
func HaltMusic() bool {
	return int(C.Mix_HaltMusic()) == 0
}
예제 #2
0
파일: sdl_mixer.go 프로젝트: flazz/go-sdl2
func HaltMusic() {
	C.Mix_HaltMusic()
}
예제 #3
0
파일: mixer.go 프로젝트: beoran/fungo
// Halt playing of the music
func HaltMusic() (int) { 
  return int(C.Mix_HaltMusic())
}