Exemplo n.º 1
0
Arquivo: audio.go Projeto: num5/steven
func (sb SoundBuffer) Free() {
	C.sfSoundBuffer_destroy(sb.internal)
}
Exemplo n.º 2
0
// \brief Destroy a sound buffer
// \param soundBuffer Sound buffer to destroy
// void sfSoundBuffer_destroy(sfSoundBuffer* soundBuffer);
func (self SoundBuffer) Destroy() {
	C.sfSoundBuffer_destroy(self.Cref)
}