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
715 B
C
25 lines
715 B
C
#ifndef FELONY_H
|
|
#define FELONY_H
|
|
|
|
|
|
extern void InitFelonyDelayArray(struct FELONY_DELAY *pFelonyDelay, short *pMaximum, int count); // 0x0004D364
|
|
|
|
extern void InitFelonyData(struct FELONY_DATA *pFelonyData); // 0x0004D3A0
|
|
|
|
extern int GetCarHeading(int direction); // 0x0004D420
|
|
|
|
extern char GetCarDirectionOfTravel(struct _CAR_DATA *cp); // 0x0004D430
|
|
|
|
extern void NoteFelony(struct FELONY_DATA *pFelonyData, char type, short scale); // 0x0004C330
|
|
|
|
extern void AdjustFelony(struct FELONY_DATA *pFelonyData); // 0x0004C8B4
|
|
|
|
extern void CheckPlayerMiscFelonies(); // 0x0004CC28
|
|
|
|
extern void InitFelonySystem(); // 0x0004D280
|
|
|
|
extern void CarHitByPlayer(struct _CAR_DATA *victim, int howHard); // 0x0004D2B8
|
|
|
|
|
|
#endif
|