mirror of
https://github.com/vcmi/vcmi.git
synced 2025-07-13 01:20:34 +02:00
- minor tweaks to quest window
- fixed #531 - fixed query crash (empty funciton)
This commit is contained in:
@ -67,6 +67,17 @@ public:
|
||||
void colorize(int player);
|
||||
};
|
||||
|
||||
/// area filled with specific texture
|
||||
class CFilledTexture : CIntObject
|
||||
{
|
||||
SDL_Surface * texture;
|
||||
|
||||
public:
|
||||
CFilledTexture(std::string imageName, Rect position);
|
||||
~CFilledTexture();
|
||||
void showAll(SDL_Surface *to);
|
||||
};
|
||||
|
||||
namespace config{struct ButtonInfo;}
|
||||
|
||||
/// Base class for buttons.
|
||||
|
Reference in New Issue
Block a user