mirror of
https://github.com/OpenDriver2/REDRIVER2.git
synced 2024-11-23 02:42:38 +01:00
c40d40bd22
- moved necessary data to new sources - running intro with TOMB5 HLE emulator
25 lines
556 B
C
25 lines
556 B
C
#ifndef DENTING_H
|
|
#define DENTING_H
|
|
|
|
|
|
extern void InitialiseDenting(); // 0x0003B1C0
|
|
|
|
extern void DentCar(struct _CAR_DATA *cp); // 0x0003A310
|
|
|
|
extern void CreateDentableCar(struct _CAR_DATA *cp); // 0x0003A6E4
|
|
|
|
extern void InitHubcap(); // 0x0003A874
|
|
|
|
extern void LoseHubcap(int Hubcap, int Velocity); // 0x0003A8F8
|
|
|
|
extern void MoveHubcap(); // 0x0003AB4C
|
|
|
|
extern void LoadDenting(int level); // 0x0003B1F0
|
|
|
|
extern void ProcessDentLump(char *lump_ptr, int lump_size); // 0x0003AE60
|
|
|
|
extern void SetupSpecDenting(char *loadbuffer); // 0x0003B240
|
|
|
|
|
|
#endif
|