REDRIVER2/src_rebuild/GAME/C/TILE.H
2020-04-09 22:11:35 +06:00

24 lines
698 B
C

#ifndef TILE_H
#define TILE_H
extern int num_models_in_pack;
extern void Tile1x1(struct MODEL *model); // 0x00041B10
extern void DrawTILES(int tile_amount); // 0x00041D7C
extern void makeMesh(struct MVERTEX (*VSP)[5][5], int m, int n); // 0x000420B0
extern void drawMesh(struct MVERTEX (*VSP)[5][5], int m, int n, struct _pct *pc); // 0x00042650
extern void SubdivNxM(char *polys, unsigned long n, unsigned long m, int ofse); // 0x00042AEC
extern void TileNxN(struct MODEL *model, int levels, int Dofse); // 0x00042F40
extern void ProcessSubDivisionLump(char *lump_ptr, int lump_size); // 0x00042F34
extern void ProcessLowDetailTable(char *lump_ptr, int lump_size); // 0x00043090
#endif