Files
tp/include/Z2AudioLib/Z2DebugSys.h
T

18 lines
360 B
C
Raw Normal View History

2024-10-08 01:32:29 +03:00
#ifndef Z2DEBUGSYS_H
#define Z2DEBUGSYS_H
#include "JSystem/JAudio2/JASGadget.h"
#include "JSystem/JAudio2/JAISeqDataMgr.h"
2024-10-08 01:32:29 +03:00
struct Z2DebugSys : public JASGlobalInstance<Z2DebugSys> {
Z2DebugSys();
~Z2DebugSys();
void initJAW();
void initSoundHioNode();
void debugframework();
JAISeqDataMgr* initSeSeqDataMgr(const void*);
2024-10-08 01:32:29 +03:00
};
#endif