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
21 lines
640 B
C
21 lines
640 B
C
#ifndef PLAYERS_H
|
|
#define PLAYERS_H
|
|
|
|
|
|
extern void InitPlayer(struct _PLAYER *locPlayer, struct _CAR_DATA *cp, char carCtrlType, int direction, long (*startPos)[4], int externModel, int palette, char *padid); // 0x000739D8
|
|
|
|
extern void ChangeCarPlayerToPed(int playerID); // 0x00073334
|
|
|
|
extern void ChangePedPlayerToCar(int playerID, struct _CAR_DATA *newCar); // 0x0007350C
|
|
|
|
extern void UpdatePlayers(); // 0x00073898
|
|
|
|
extern void RequestSlightPauseBeforeCarSoundStarts(char player_id); // 0x00073C0C
|
|
|
|
extern void HaveCarSoundStraightAway(char player_id); // 0x00073C54
|
|
|
|
extern void MakeTheCarShutUp(char player_id); // 0x00073C8C
|
|
|
|
|
|
#endif
|