示例#1
0
func (m *Mixer) GetPlaying() bool {
	return bool(C.al_get_mixer_playing((*C.ALLEGRO_MIXER)(unsafe.Pointer(m))))
}
示例#2
0
文件: audio.go 项目: beoran/algo
// Returns wheter or not the mixer is playing
func (self *Mixer) Playing() bool {
	return cb2b(C.al_get_mixer_playing(self.handle))
}