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.hh9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/game/client/resource/sound_effect.hh b/src/game/client/resource/sound_effect.hh
index f2db33b..602293c 100644
--- a/src/game/client/resource/sound_effect.hh
+++ b/src/game/client/resource/sound_effect.hh
@@ -1,3 +1,10 @@
+// SPDX-License-Identifier: BSD-2-Clause
+// Copyright (c) 2025 Kirill Dmitrievich
+// File: sound_effect.hh
+// Description: Sound effect resource
+
+#ifndef CLIENT_RESOURCE_SOUND_EFFECT_HH
+#define CLIENT_RESOURCE_SOUND_EFFECT_HH
#pragma once
struct SoundEffect final {
@@ -6,3 +13,5 @@ struct SoundEffect final {
std::string name;
ALuint buffer;
};
+
+#endif