mirror of
https://git.zap.org.au/git/trader.git
synced 2025-02-02 15:08:13 -05:00
Define the global variable quit_selected
This commit is contained in:
parent
ad10fd4af6
commit
4279467e14
@ -69,3 +69,5 @@ int first_player; // Who WAS the first player to go?
|
|||||||
|
|
||||||
bool game_loaded = false; // True if game was loaded from disk
|
bool game_loaded = false; // True if game was loaded from disk
|
||||||
int game_num = 0; // Game number (1-9)
|
int game_num = 0; // Game number (1-9)
|
||||||
|
|
||||||
|
bool quit_selected; // Is a player trying to quit the game?
|
||||||
|
@ -140,5 +140,7 @@ extern int first_player; // Who WAS the first player to go?
|
|||||||
extern bool game_loaded; // True if game was loaded from disk
|
extern bool game_loaded; // True if game was loaded from disk
|
||||||
extern int game_num; // Game number (1-9)
|
extern int game_num; // Game number (1-9)
|
||||||
|
|
||||||
|
extern bool quit_selected; // Is a player trying to quit the game?
|
||||||
|
|
||||||
|
|
||||||
#endif /* included_GLOBALS_H */
|
#endif /* included_GLOBALS_H */
|
||||||
|
Loading…
Reference in New Issue
Block a user