3 Sound::Sound(char * file
) {
7 Sound::Sound(char * file
, bool streaming
) {
9 sid
= streamSound(file
);
30 void Sound::setPosition(float x
, float y
, float z
) {
31 setSoundPosition(sid
,x
,y
,z
);
34 void Sound::setPitch(float p
) {
38 void Sound::setLowpass(bool l
) {
39 setSoundLowpass(sid
,l
);
42 bool Sound::getLowpass() {
43 return getSoundLowpass(sid
);