Ejemplo n.º 1
0
func (s *SampleInstance) Play() bool {
	return bool(C.al_play_sample_instance((*C.ALLEGRO_SAMPLE_INSTANCE)(unsafe.Pointer(s))))
}
Ejemplo n.º 2
0
Archivo: audio.go Proyecto: beoran/algo
// Plays the sample instance
func (self *SampleInstance) Play() bool {
	return cb2b(C.al_play_sample_instance(self.handle))
}