2013-04-04 17:58:54 +03:00
# pragma once
2014-05-21 19:04:34 +03:00
# include <SDL_render.h>
2014-05-23 14:42:27 +03:00
extern SDL_Texture * screenTexture ;
2014-05-21 19:04:34 +03:00
extern SDL_Window * mainWindow ;
extern SDL_Renderer * mainRenderer ;
2013-04-04 17:58:54 +03:00
extern SDL_Surface * screen ; // main screen surface
extern SDL_Surface * screen2 ; // and hlp surface (used to store not-active interfaces layer)
2013-06-17 18:45:55 +03:00
extern SDL_Surface * screenBuf ; // points to screen (if only advmapint is present) or screen2 (else) - should be used when updating controls which are not regularly redrawed
2014-05-21 19:04:34 +03:00
2013-06-17 18:45:55 +03:00
extern bool gNoGUI ; //if true there is no client window and game is silently played between AIs
2015-06-21 19:30:19 +02:00
void handleQuit ( bool ask = true ) ;