mirror of https://github.com/zeldaret/tp.git
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 */
|