This commit is contained in:
parent
5c54345a81
commit
68fa6f4e6c
5 changed files with 121 additions and 0 deletions
|
@ -126,6 +126,26 @@ static u8 UnpackBuffer[CActorPool::MAX_ACTOR_SIZE];
|
|||
|
||||
};
|
||||
|
||||
/*****************************************************************************/
|
||||
class CModelGfx
|
||||
{
|
||||
public:
|
||||
CModelGfx(){};
|
||||
virtual ~CModelGfx(){};
|
||||
|
||||
static void SetData(sModel *Table,sTri *TList,sQuad *QList,sVtx *VList);
|
||||
void SetModel(int Type);
|
||||
|
||||
void Render(DVECTOR &Pos);
|
||||
|
||||
protected:
|
||||
static sModel *ModelTable;
|
||||
static sTri *ModelTriList;
|
||||
static sQuad *ModelQuadList;
|
||||
static sVtx *ModelVtxList;
|
||||
sModel *Model;
|
||||
};
|
||||
|
||||
/*****************************************************************************/
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue