2017-07-13 11:26:03 +03:00
/*
* CMT . h , part of VCMI engine
*
* Authors : listed in file AUTHORS in main folder
*
* License : GNU General Public License v2 .0 or later
* Full text of license available in license . txt file , in main folder
*
*/
2013-04-04 14:58:54 +00:00
# pragma once
2014-05-21 20:04:34 +04:00
# include <SDL_render.h>
2014-05-23 15:42:27 +04:00
extern SDL_Texture * screenTexture ;
2014-05-21 20:04:34 +04:00
extern SDL_Window * mainWindow ;
extern SDL_Renderer * mainRenderer ;
2013-04-04 14:58:54 +00: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 15:45:55 +00: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
2017-03-14 02:40:39 +03:00
void removeGUI ( ) ;
2015-06-21 20:30:19 +03:00
void handleQuit ( bool ask = true ) ;