Files
tp/include/JSystem/JAudio2/JASBasicBank.h
T

23 lines
557 B
C++
Raw Normal View History

2021-03-28 22:49:05 +02:00
#ifndef JASBASICBANK_H
#define JASBASICBANK_H
2024-10-23 19:25:13 -04:00
#include "JSystem/JAudio2/JASBank.h"
#include "JSystem/JAudio2/JASBasicInst.h"
#include "JSystem/JKernel/JKRHeap.h"
class JASBasicBank : public JASBank {
public:
2025-11-30 14:23:42 -08:00
JASBasicBank();
void newInstTable(u8, JKRHeap*);
bool getInstParam(int, int, int, JASInstParam*) const;
void setInst(int, JASInst*);
JASInst* getInst(int) const;
~JASBasicBank() {}
u32 getType() const { return 'BSIC'; }
2024-10-23 19:25:13 -04:00
/* 0x8 */ JASInst** mInstTable;
/* 0xC */ u8 mInstNumMax;
};
2021-03-28 22:49:05 +02:00
#endif /* JASBASICBANK_H */