whoa/src/sound/SI2USERDATA.hpp
2025-11-26 14:10:54 -06:00

20 lines
374 B
C++

#ifndef SOUND_SI2_USER_DATA_HPP
#define SOUND_SI2_USER_DATA_HPP
#include "sound/SEUserData.hpp"
#include <cstdint>
class SOUNDKITDEF;
class SI2USERDATA : public SEUserData {
public:
// Member variables
const char* m_name = nullptr;
int32_t m_ID = 0;
SOUNDKITDEF* m_def = nullptr;
int32_t m_type = 0;
// TODO
};
#endif