feat(sound): add SEUserData and SI2USERDATA

This commit is contained in:
fallenoak 2025-11-26 14:10:54 -06:00
parent d4cd3e4bc1
commit f64e75a490
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D
2 changed files with 28 additions and 0 deletions

9
src/sound/SEUserData.hpp Normal file
View File

@ -0,0 +1,9 @@
#ifndef SOUND_SE_USER_DATA_HPP
#define SOUND_SE_USER_DATA_HPP
class SEUserData {
public:
// TODO
};
#endif

19
src/sound/SI2USERDATA.hpp Normal file
View File

@ -0,0 +1,19 @@
#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