mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 15:01:53 -04:00
7d271be857
* d_resource / some d_stage * setup dDlst_list_c / d_select_icon OK * JUTXfb / some JUTVideo + various * some J2D classes / JUTVideo/Fader attempts * bunch of m_Do cleanup + matches / f_ap_game OK * mDoLib_clipper::setup OK * most of d_meter_HIO OK * pane_class / kantera_icon_meter
21 lines
451 B
C++
21 lines
451 B
C++
#ifndef J3DSHAPEDRAW_H
|
|
#define J3DSHAPEDRAW_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
class J3DShapeDraw {
|
|
public:
|
|
/* 80314924 */ void countVertex(u32);
|
|
/* 80314974 */ void addTexMtxIndexInDL(u32, u32, u32);
|
|
/* 80314ABC */ J3DShapeDraw(u8 const*, u32);
|
|
/* 80314AD4 */ void draw() const;
|
|
|
|
/* 80314B00 */ virtual ~J3DShapeDraw();
|
|
|
|
private:
|
|
/* 0x04 */ u32 mDisplayListSize;
|
|
/* 0x08 */ void* mDisplayList;
|
|
};
|
|
|
|
#endif /* J3DSHAPEDRAW_H */
|