mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02:45 +03:00
feat(sound): add SEUserData and SI2USERDATA
This commit is contained in:
parent
d4cd3e4bc1
commit
f64e75a490
9
src/sound/SEUserData.hpp
Normal file
9
src/sound/SEUserData.hpp
Normal 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
19
src/sound/SI2USERDATA.hpp
Normal 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
|
||||||
Loading…
Reference in New Issue
Block a user