36 lines
1.2 KiB
C++
36 lines
1.2 KiB
C++
#ifndef INC_DEBUGNODES_H_
|
|
#define INC_DEBUGNODES_H_
|
|
|
|
#if __BANK
|
|
|
|
#include "script/wrapper.h"
|
|
#include "vector/color32.h"
|
|
#include "NodeViewer.h"
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
class DebugNodeSys
|
|
{
|
|
public:
|
|
static void Init();
|
|
static void Shutdown();
|
|
|
|
static void SetupScriptCommands();
|
|
static bool LoadSetScript(s32 user,s32 index,s32& address,s32 size);
|
|
static bool SaveSetScript(s32 user,s32 index,s32& address,s32 size);
|
|
|
|
static bool LoadSet(s32 user,s32 index,NoteNodeSet *nodeset,s32 size);
|
|
static bool SaveSet(s32 user,s32 index,NoteNodeSet *nodeset,s32 size);
|
|
static bool DeleteSet(s32 user,s32 index);
|
|
};
|
|
|
|
|
|
#endif //#if __BANK
|
|
|
|
#endif //INC_DEBUGNODES_H_
|