feat(sound): add SEChannelGroup

This commit is contained in:
fallenoak 2025-11-28 22:51:12 -06:00
parent ce629fc5c8
commit 25d2d36636
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D

View File

@ -0,0 +1,16 @@
#ifndef SOUND_SE_CHANNEL_GROUP_HPP
#define SOUND_SE_CHANNEL_GROUP_HPP
#include <cstdint>
class SEChannelGroup {
public:
// Member variables
uint32_t m_nameHash;
int32_t m_parentChannelGroup;
float m_volume;
float m_muteVolume;
bool m_needsUpdate;
};
#endif