summaryrefslogtreecommitdiffstats
path: root/src/game/client/resource/sound_effect.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/client/resource/sound_effect.hh')
-rw-r--r--src/game/client/resource/sound_effect.hh8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/game/client/resource/sound_effect.hh b/src/game/client/resource/sound_effect.hh
new file mode 100644
index 0000000..f2db33b
--- /dev/null
+++ b/src/game/client/resource/sound_effect.hh
@@ -0,0 +1,8 @@
+#pragma once
+
+struct SoundEffect final {
+ static void register_resource(void);
+
+ std::string name;
+ ALuint buffer;
+};