mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-24 15:00:55 -04:00
8534b4ff46
* Improve some J2DPictureEx matches + other minor debug improvements * Fix JASTrack::channelStart
18 lines
246 B
C++
18 lines
246 B
C++
#ifndef JASBANKLIST_H
|
|
#define JASBANKLIST_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
class JASBank;
|
|
|
|
/**
|
|
* @ingroup jsystem-jaudio
|
|
*
|
|
*/
|
|
class JASBankList {
|
|
public:
|
|
virtual const JASBank* getBank(u32 param_0) const = 0;
|
|
};
|
|
|
|
#endif /* JASBANKLIST_H */
|