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
2023-01-17 22:01:35 +02:00
struct SDL_Texture ;
struct SDL_Renderer ;
struct SDL_Surface ;
2014-05-21 20:04:34 +04:00
2014-05-23 15:42:27 +04:00
extern SDL_Texture * screenTexture ;
2014-05-21 20:04:34 +04:00
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
2024-08-31 18:12:00 +03:00
/// Notify user about encountered fatal error and terminate the game
/// Defined in clientapp EntryPoint
/// TODO: decide on better location for this method
[[noreturn]] void handleFatalError ( const std : : string & message , bool terminate ) ;
2015-06-21 20:30:19 +03:00
void handleQuit ( bool ask = true ) ;