mirror of
https://github.com/zeldaret/tp
synced 2026-05-26 07:39:06 -04:00
a6e76c0841
* some wii OS fixes * remove old dol2asm comments * remove dol2asm.h * remove function address comments * normalize ATTRIBUTE_ALIGN usage * DECL_WEAK macro * fix gcc attribute weak macro * wrap more mwcc specific things in ifdefs * fixes * fix revo sdk version flags * fixes
22 lines
465 B
C++
22 lines
465 B
C++
#ifndef JASVOICEBANK_H
|
|
#define JASVOICEBANK_H
|
|
|
|
#include "JSystem/JAudio2/JASBank.h"
|
|
#include "JSystem/JAudio2/JASOscillator.h"
|
|
|
|
/**
|
|
* @ingroup jsystem-jaudio
|
|
*
|
|
*/
|
|
class JASVoiceBank : public JASBank {
|
|
public:
|
|
virtual bool getInstParam(int, int, int, JASInstParam*) const;
|
|
virtual ~JASVoiceBank();
|
|
virtual u32 getType() const;
|
|
|
|
static const JASOscillator::Data sOscData;
|
|
static JASOscillator::Data* sOscTable;
|
|
};
|
|
|
|
#endif /* JASVOICEBANK_H */
|