X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=Source%2FSounds.h;h=20cd2b0c3dc0732269e0a380d24126e59af757be;hb=8afdcba610cded0e54b85069ba051268b29669a6;hp=49eb2d36782b3879768865289b5bf60e0a95416e;hpb=03e3d05a91e2a3aea407387d9531177b2ca31813;p=lugaru.git diff --git a/Source/Sounds.h b/Source/Sounds.h index 49eb2d3..20cd2b0 100644 --- a/Source/Sounds.h +++ b/Source/Sounds.h @@ -30,11 +30,16 @@ sounds_count }; extern struct OPENAL_SAMPLE *samp[sounds_count]; +extern int channels[]; extern void loadAllSounds(); extern void emit_sound_at(int soundid, const XYZ &pos = XYZ(), float vol = 256.f); +extern void emit_sound_np(int soundid, float vol = 256.f); extern void emit_stream_at(int soundid, const XYZ &pos = XYZ(), float vol = 256.f); +extern void emit_stream_np(int soundid, float vol = 256.f); +extern void resume_stream(int soundid); +extern void pause_sound(int soundid); extern int footstepsound, footstepsound2, footstepsound3, footstepsound4; #endif