예제 #1
0
파일: sdl_mixer.go 프로젝트: flazz/go-sdl2
func FadeOutGroup(tag, ms int) int {
	_tag := (C.int)(tag)
	_ms := (C.int)(ms)
	return int(C.Mix_FadeOutGroup(_tag, _ms))
}
예제 #2
0
파일: mixer.go 프로젝트: beoran/fungo
// Halt playing of a particular group
func FadeOutGroup(tag, ms int) (int) { 
  return int(C.Mix_FadeOutGroup(C.int(tag), C.int(ms)))
}