mirror of
https://github.com/OpenDriver2/REDRIVER2.git
synced 2024-11-23 19:02:35 +01:00
22 lines
666 B
C
22 lines
666 B
C
#ifndef TILE_H
|
|
#define TILE_H
|
|
|
|
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
|