From 6cd00aacfa22fed6a54a9b812f6b069ad16feec0 Mon Sep 17 00:00:00 2001 From: untodesu Date: Sun, 29 Jun 2025 22:24:42 +0500 Subject: Move game sources into src subdirectory --- src/game/client/sound_effect.hh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/game/client/sound_effect.hh (limited to 'src/game/client/sound_effect.hh') diff --git a/src/game/client/sound_effect.hh b/src/game/client/sound_effect.hh new file mode 100644 index 0000000..83b5e4d --- /dev/null +++ b/src/game/client/sound_effect.hh @@ -0,0 +1,10 @@ +#ifndef CLIENT_SOUND_EFFECT_HH +#define CLIENT_SOUND_EFFECT_HH 1 +#pragma once + +struct SoundEffect final { + std::string name; + ALuint buffer; +}; + +#endif /* CLIENT_SOUND_EFFECT_HH */ -- cgit