예제 #1
0
파일: audio.go 프로젝트: num5/steven
func (s Sound) Free() {
	C.sfSound_destroy(s.internal)
}
예제 #2
0
// \brief Destroy a sound
// \param sound Sound to destroy
// void sfSound_destroy(sfSound* sound);
func (self Sound) Destroy() {
	C.sfSound_destroy(self.Cref)
}