Пример #1
0
func (a *Stream) GetPlaying() bool {
	return bool(C.al_get_audio_stream_playing((*C.ALLEGRO_AUDIO_STREAM)(unsafe.Pointer(a))))
}
Пример #2
0
// Returns wheter or not the audio stream is playing
func (self *AudioStream) Playing() bool {
	return cb2b(C.al_get_audio_stream_playing(self.handle))
}