mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 15:01:53 -04:00
221f40e609
* add "global.h" to files that use it * add MSL_C includes to files that use them * remove dolphin includes from headers that don't need them * remove JSupport includes from headers that don't need them * remove JKernel includes from headers that don't need them * remove JUtility includes from headers that don't need them * remove J3D includes from headers that don't need them * remove J2D includes from headers that don't need them * remove JAudio2 includes from headers that don't need them * remove Z2AudioLib includes from headers that don't need them * remove JMessage includes from headers that don't need them * remove JParticle includes from headers that don't need them * remove SComponent includes from headers that don't need them * remove dol includes from headers that don't need them * sort includes
35 lines
839 B
C++
35 lines
839 B
C++
#ifndef J3DSHAPETABLE_H
|
|
#define J3DSHAPETABLE_H
|
|
|
|
#include "JSystem/J3DGraphBase/J3DShape.h"
|
|
#include "JSystem/J3DGraphBase/J3DVertex.h"
|
|
#include "dolphin/types.h"
|
|
|
|
class JUTNameTab;
|
|
|
|
class J3DShapeTable {
|
|
public:
|
|
J3DShapeTable() {
|
|
mShapeNum = 0;
|
|
mShapeNodePointer = NULL;
|
|
mShapeName = NULL;
|
|
}
|
|
|
|
/* 803258A0 */ void hide();
|
|
/* 803258D8 */ void show();
|
|
/* 80325910 */ void initShapeNodes(J3DDrawMtxData*, J3DVertexData*);
|
|
/* 8032597C */ void sortVcdVatCmd();
|
|
|
|
virtual ~J3DShapeTable();
|
|
|
|
u16 getShapeNum() const { return mShapeNum; }
|
|
J3DShape* getShapeNodePointer(u16 idx) const { return mShapeNodePointer[idx]; }
|
|
|
|
private:
|
|
/* 0x4 */ u16 mShapeNum;
|
|
/* 0x8 */ J3DShape** mShapeNodePointer;
|
|
/* 0xC */ JUTNameTab* mShapeName;
|
|
}; // Size: 0x10
|
|
|
|
#endif /* J3DSHAPETABLE_H */
|