mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 08:12:44 +03:00
20 lines
374 B
C++
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
|