mirror of
https://github.com/OpenDriver2/REDRIVER2.git
synced 2024-11-22 18:32:42 +01:00
27 lines
703 B
C
27 lines
703 B
C
#ifndef FELONY_H
|
|
#define FELONY_H
|
|
|
|
#define FELONY_PURSUIT_MIN_VALUE (658)
|
|
#define FELONY_ROADBLOCK_MIN_VALUE (1318)
|
|
|
|
#define FELONY_MAX_VALUE (4096)
|
|
|
|
extern int CopsCanSeePlayer;
|
|
extern short pedestrianFelony;
|
|
|
|
extern FELONY_DATA felonyData;
|
|
|
|
extern void InitFelonySystem(); // 0x0004D280
|
|
extern void CheckPlayerMiscFelonies(); // 0x0004CC28
|
|
|
|
extern int GetCarHeading(int direction); // 0x0004D420
|
|
|
|
extern char GetCarDirectionOfTravel(CAR_DATA *cp); // 0x0004D430
|
|
|
|
extern void CarHitByPlayer(CAR_DATA* victim, int howHard); // 0x0004D2B8
|
|
|
|
extern void NoteFelony(FELONY_DATA *pFelonyData, char type, short scale); // 0x0004C330
|
|
extern void AdjustFelony(FELONY_DATA *pFelonyData); // 0x0004C8B4
|
|
|
|
#endif
|