]> git.jsancho.org Git - lugaru.git/blobdiff - Source/Audio/Sounds.hpp
clang-format: Apply to all headers
[lugaru.git] / Source / Audio / Sounds.hpp
index 81192d5ed160c755561542f6b5359562933d3c91..e4acf4fcdfb9a5c6ab606fb8aad5744c20ed970a 100644 (file)
@@ -22,23 +22,24 @@ along with Lugaru.  If not, see <http://www.gnu.org/licenses/>.
 
 #include "Math/XYZ.hpp"
 
-enum sound_type {
+enum sound_type
+{
 #define DECLARE_SOUND(id, filename) id,
 #include "Sounds.def"
 #undef DECLARE_SOUND
     sounds_count
 };
 
-extern struct OPENAL_SAMPLE *samp[sounds_count];
+extern struct OPENAL_SAMPLEsamp[sounds_count];
 extern int channels[];
 
 extern void loadAllSounds();
 
 extern void addEnvSound(XYZ coords, float vol = 16, float life = .4);
 
-extern void emit_sound_at(int soundid, const XYZ &pos = XYZ(), float vol = 256.f);
+extern void emit_sound_at(int soundid, const XYZpos = 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_at(int soundid, const XYZpos = 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);