mirror of
https://github.com/OpenDriver2/REDRIVER2.git
synced 2024-11-24 03:12:35 +01:00
356c5f6c88
- bunch of pretty mission code
25 lines
685 B
C
25 lines
685 B
C
#ifndef SCORES_H
|
|
#define SCORES_H
|
|
|
|
extern SCORE_TABLES ScoreTables;
|
|
extern PLAYER_SCORE gPlayerScore;
|
|
|
|
extern void InitialiseScoreTables(); // 0x00074EC0
|
|
|
|
extern int OnScoreTable(struct SCORE_ENTRY **tablept); // 0x0007503C
|
|
|
|
extern void AddScoreToTable(struct SCORE_ENTRY *table, int entry); // 0x000751F8
|
|
|
|
extern int CheckGetawayPlacing(struct SCORE_ENTRY *table); // 0x0007526C
|
|
|
|
extern int CheckTrailblazerPlacing(struct SCORE_ENTRY *table); // 0x000752BC
|
|
|
|
extern int CheckCheckpointPlacing(struct SCORE_ENTRY *table); // 0x00075338
|
|
|
|
extern int CheckSurvivalPlacing(struct SCORE_ENTRY *table); // 0x00075388
|
|
|
|
extern void ResetTable(struct SCORE_ENTRY *table); // 0x000753D8
|
|
|
|
|
|
#endif
|