mirror of
https://github.com/OpenDriver2/REDRIVER2.git
synced 2024-11-24 11:22:39 +01:00
c40d40bd22
- moved necessary data to new sources - running intro with TOMB5 HLE emulator
23 lines
667 B
C
23 lines
667 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
|