mirror of https://github.com/zeldaret/tp.git
17 lines
352 B
C++
17 lines
352 B
C++
#ifndef Z2AUDIOARCLOADER_H
|
|
#define Z2AUDIOARCLOADER_H
|
|
|
|
#include "JSystem/JAudio2/JAUAudioArcLoader.h"
|
|
#include "dolphin/types.h"
|
|
|
|
class Z2AudioArcLoader {
|
|
Z2AudioArcLoader(JAUSection*);
|
|
~Z2AudioArcLoader();
|
|
|
|
void readCommandMore(u32);
|
|
void readBFCA(const void*);
|
|
void readBSTN(const void*, u32);
|
|
};
|
|
|
|
#endif /* Z2AUDIOARCLOADER_H */
|