]> git.jsancho.org Git - lugaru.git/blobdiff - Source/Sounds.h
Drop Open_Stream
[lugaru.git] / Source / Sounds.h
index 042afae6f0395d670b81c32a5c78da0fe37f42ae..8feac33951dcf4d0d113f2e7281f442eed627133 100644 (file)
@@ -23,9 +23,15 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 #define SOUNDS_H
 
 enum sound_types {
-#define DECLARE_SOUND(id) id,
+#define DECLARE_SOUND(id, filename) id,
 #include "Sounds.def"
 #undef DECLARE_SOUND
+sounds_count
 };
 
+extern struct OPENAL_SAMPLE *samp[sounds_count];
+
+extern void loadAllSounds();
+
+extern int footstepsound, footstepsound2, footstepsound3, footstepsound4;
 #endif