forked from 1dot13/source
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gamescreen.h
44 lines (21 loc) · 820 Bytes
/
gamescreen.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#ifndef _GAMESCREEN_H
#define _GAMESCREEN_H
#include "fade screen.h"
#define ARE_IN_FADE_IN( ) ( gfFadeIn || gfFadeInitialized )
void FadeInGameScreen( );
void FadeOutGameScreen( );
typedef void (*MODAL_HOOK)( void );
extern BOOLEAN gfGameScreenLocateToSoldier;
extern BOOLEAN gfEnteringMapScreen;
extern UINT8 gubPreferredInitialSelectedGuy;
void EnterMapScreen( );
void UpdateTeamPanelAssignments( );
#define TACTICAL_MODAL_NOMOUSE 1
#define TACTICAL_MODAL_WITHMOUSE 2
extern MODAL_HOOK gModalDoneCallback;
void EnterModalTactical( INT8 bMode );
void EndModalTactical( );
// handle the entrance of the mercs at the beginning of the game
void InitHelicopterEntranceByMercs( void );
void InternalLeaveTacticalScreen( UINT32 uiNewScreen );
#endif