Example #1
0
File: audio.go Project: num5/steven
func NewSound() Sound {
	return Sound{C.sfSound_create()}
}
Example #2
0
// \brief Create a new sound
// \return A new sfSound object
// sfSound* sfSound_create(void);
func (self Sound) NewSound() Sound {
	return Sound{C.sfSound_create()}
}