1
0
mirror of https://git.zap.org.au/git/trader.git synced 2024-07-07 15:54:14 -04:00

Define the global variable quit_selected

This commit is contained in:
John Zaitseff 2011-07-04 18:24:10 +10:00
parent ad10fd4af6
commit 4279467e14
2 changed files with 4 additions and 0 deletions

View File

@ -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
int game_num = 0; // Game number (1-9)
bool quit_selected; // Is a player trying to quit the game?

View File

@ -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 int game_num; // Game number (1-9)
extern bool quit_selected; // Is a player trying to quit the game?
#endif /* included_GLOBALS_H */