Make touchscreengui compile

This commit is contained in:
Desour 2023-08-12 17:16:21 +02:00 committed by sfan5
parent 14441a289e
commit 7f9de5db0b
1 changed files with 2 additions and 1 deletions

View File

@ -25,6 +25,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include <IrrlichtDevice.h> #include <IrrlichtDevice.h>
#include <map> #include <map>
#include <memory>
#include <vector> #include <vector>
#include "client/tile.h" #include "client/tile.h"
@ -90,7 +91,7 @@ struct button_info
FIRST_TEXTURE, FIRST_TEXTURE,
SECOND_TEXTURE SECOND_TEXTURE
} toggleable = NOT_TOGGLEABLE; } toggleable = NOT_TOGGLEABLE;
std::vector<const std::string> textures; std::vector<std::string> textures;
}; };
class AutoHideButtonBar class AutoHideButtonBar