1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-06 09:09:40 +02:00

Added clickable and highlightable player flags in adv. options tab

This commit is contained in:
Michał W. Urbańczyk
2007-07-25 20:41:04 +00:00
parent e2d9f8956e
commit 53da2c389c
3 changed files with 14 additions and 1 deletions

View File

@@ -24,7 +24,7 @@ struct OverButton
struct HighButton: public OverButton
{
HighButton( SDL_Rect Pos, CDefHandler* Imgs, bool Sel=false, int id=-1)
{type=0;imgs=Imgs;selectable=Sel;selected=false;state=0;pos=Pos;ID=id;};
{type=0;imgs=Imgs;selectable=Sel;selected=false;state=0;pos=Pos;ID=id;highlightable=false;};
HighButton(){}
bool selectable, selected;
bool highlightable, highlighted;