mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-25 15:05:06 -04:00
aa450a7dbc
* Z2SoundInfo * JAUSectionHeap * Z2EnvSeMgr * Z2AudioMgr * m_Do_audio * d_a_alink
15 lines
416 B
C++
15 lines
416 B
C++
#ifndef JAUSOUNDINFO_H
|
|
#define JAUSOUNDINFO_H
|
|
|
|
#include "JSystem/JAudio2/JAISound.h"
|
|
#include "JSystem/JAudio2/JASGadget.h"
|
|
|
|
class JAUSoundInfo : public JASGlobalInstance<JAUSoundInfo> {
|
|
public:
|
|
JAUSoundInfo(bool param_0) : JASGlobalInstance<JAUSoundInfo>(param_0) {}
|
|
virtual void getAudibleSw(JAISoundID) const = 0;
|
|
virtual u16 getBgmSeqResourceID(JAISoundID) const = 0;
|
|
};
|
|
|
|
#endif /* JAUSOUNDINFO_H */
|