Ejemplo n.º 1
0
func (m *Mixer) GetPlaying() bool {
	return bool(C.al_get_mixer_playing((*C.ALLEGRO_MIXER)(unsafe.Pointer(m))))
}
Ejemplo n.º 2
0
Archivo: audio.go Proyecto: beoran/algo
// Returns wheter or not the mixer is playing
func (self *Mixer) Playing() bool {
	return cb2b(C.al_get_mixer_playing(self.handle))
}