コード例 #1
0
ファイル: audio.go プロジェクト: b1naryth1ef/allegro
func (v *Voice) GetPlaying() bool {
	return bool(C.al_get_voice_playing((*C.ALLEGRO_VOICE)(unsafe.Pointer(v))))
}
コード例 #2
0
ファイル: audio.go プロジェクト: beoran/algo
// Returns wheter or not the voice is playing
func (self *Voice) Playing() bool {
	return cb2b(C.al_get_voice_playing(self.handle))
}