Files
tp/include/d/d_debug_pad.h
T

25 lines
458 B
C++
Raw Normal View History

#ifndef D_DEBUG_PAD_H
#define D_DEBUG_PAD_H
2025-10-27 20:55:46 -07:00
#include "m_Do/m_Do_controller_pad.h"
#include "JSystem/JUtility/TColor.h"
class dDebugPad_c {
public:
2025-10-27 20:55:46 -07:00
dDebugPad_c();
2025-12-19 11:22:03 -08:00
bool Active() { return mIsActive; }
2025-10-27 20:55:46 -07:00
bool Update();
bool Report(int, int, JUtility::TColor, const char*, ...);
bool Enable(s32);
bool Trigger();
2025-12-19 11:22:03 -08:00
/* 0x0 */ bool mIsActive;
2025-10-27 20:55:46 -07:00
/* 0x1 */ u8 mTrigger;
/* 0x4 */ s32 mMode;
};
extern dDebugPad_c dDebugPad;
#endif