mirror of https://github.com/zeldaret/tp.git
19 lines
461 B
C++
19 lines
461 B
C++
#ifndef JAUSOUNDINFO_H
|
|
#define JAUSOUNDINFO_H
|
|
|
|
#include "JSystem/JAudio2/JASGadget.h"
|
|
#include "JSystem/JAudio2/JAUAudibleParam.h"
|
|
|
|
/**
|
|
* @ingroup jsystem-jaudio
|
|
*
|
|
*/
|
|
class JAUSoundInfo : public JASGlobalInstance<JAUSoundInfo> {
|
|
public:
|
|
JAUSoundInfo(bool param_0) : JASGlobalInstance<JAUSoundInfo>(param_0) {}
|
|
virtual u16 getAudibleSw(JAISoundID) const = 0;
|
|
virtual u16 getBgmSeqResourceID(JAISoundID) const = 0;
|
|
};
|
|
|
|
#endif /* JAUSOUNDINFO_H */
|