From 25d2d36636adbc05248eefc9aa838d0849841d02 Mon Sep 17 00:00:00 2001 From: fallenoak Date: Fri, 28 Nov 2025 22:51:12 -0600 Subject: [PATCH] feat(sound): add SEChannelGroup --- src/sound/SEChannelGroup.hpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/sound/SEChannelGroup.hpp diff --git a/src/sound/SEChannelGroup.hpp b/src/sound/SEChannelGroup.hpp new file mode 100644 index 0000000..ec3e316 --- /dev/null +++ b/src/sound/SEChannelGroup.hpp @@ -0,0 +1,16 @@ +#ifndef SOUND_SE_CHANNEL_GROUP_HPP +#define SOUND_SE_CHANNEL_GROUP_HPP + +#include + +class SEChannelGroup { + public: + // Member variables + uint32_t m_nameHash; + int32_t m_parentChannelGroup; + float m_volume; + float m_muteVolume; + bool m_needsUpdate; +}; + +#endif