mirror of https://github.com/zeldaret/tp.git
41 lines
728 B
C++
41 lines
728 B
C++
#ifndef D_JPREVIEWER_H
|
|
#define D_JPREVIEWER_H
|
|
|
|
#include "dolphin/mtx.h"
|
|
|
|
namespace JStudio {
|
|
class TControl;
|
|
}
|
|
|
|
class J2DOrthoGraph;
|
|
class JKRExpHeap;
|
|
class JUTGamePad;
|
|
class JUTResFont;
|
|
class tParse_;
|
|
|
|
class dJprevCtrl_c /* : public JStudioPreviewer::TControl */ {
|
|
public:
|
|
|
|
};
|
|
|
|
class dJprev_c {
|
|
public:
|
|
dJprev_c(JStudio::TControl*, const JUTGamePad&);
|
|
|
|
void show3D(Mtx);
|
|
void show2D();
|
|
|
|
static dJprev_c* get() { return m_myObj; }
|
|
|
|
static dJprev_c* m_myObj;
|
|
|
|
/* 0x00 */ J2DOrthoGraph* mOrthoGraph;
|
|
/* 0x04 */ JUTResFont* mFont;
|
|
/* 0x08 */ JKRExpHeap* mHeap;
|
|
/* 0x0C */ tParse_* m_parse;
|
|
/* 0x10 */ dJprevCtrl_c* mControl;
|
|
/* 0x14 */ u8 field_0x14;
|
|
};
|
|
|
|
#endif /* D_JPREVIEWER_H */
|