1 #ifndef __WL_INTER_H__
2 #define __WL_INTER_H__
3 
4 /*
5 =============================================================================
6 
7 								WL_INTER
8 
9 =============================================================================
10 */
11 
12 extern struct LRstruct
13 {
14 	unsigned int killratio;
15 	unsigned int secretsratio;
16 	unsigned int treasureratio;
17 	unsigned int numLevels;
18 	unsigned int time;
19 	unsigned int par;
20 } LevelRatios;
21 
22 void DrawHighScores(void);
23 void CheckHighScore (int32_t score, const class LevelInfo *levelInfo);
24 void Victory (bool fromIntermission);
25 void LevelCompleted (void);
26 void ClearSplitVWB (void);
27 
28 void PreloadGraphics(bool showPsych);
29 
30 #endif
31