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