コード例 #1
0
ファイル: audio.go プロジェクト: num5/steven
func NewSound() Sound {
	return Sound{C.sfSound_create()}
}
コード例 #2
0
ファイル: aud-sound.go プロジェクト: drhodes/go-sfml
// \brief Create a new sound
// \return A new sfSound object
// sfSound* sfSound_create(void);
func (self Sound) NewSound() Sound {
	return Sound{C.sfSound_create()}
}