mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
6f96e66518
* some JAudio work * audio cleanup checkpoint * checkpoint more audio cleanup * fix symbols * more z2 cleanup * fix regression * fix build * some fixes
18 lines
360 B
C
18 lines
360 B
C
#ifndef Z2DEBUGSYS_H
|
|
#define Z2DEBUGSYS_H
|
|
|
|
#include "JSystem/JAudio2/JASGadget.h"
|
|
#include "JSystem/JAudio2/JAISeqDataMgr.h"
|
|
|
|
struct Z2DebugSys : public JASGlobalInstance<Z2DebugSys> {
|
|
Z2DebugSys();
|
|
~Z2DebugSys();
|
|
|
|
void initJAW();
|
|
void initSoundHioNode();
|
|
void debugframework();
|
|
JAISeqDataMgr* initSeSeqDataMgr(const void*);
|
|
};
|
|
|
|
#endif
|