1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Made the main menu a bit more unique looking

This commit is contained in:
Perttu Ahola 2011-04-24 00:11:23 +03:00
parent 60a565c1d2
commit 0034744568
5 changed files with 174 additions and 31 deletions

View file

@ -31,6 +31,7 @@ struct MainMenuData
{
MainMenuData():
creative_mode(false),
enable_damage(false),
delete_map(false)
{}
// These are in the native format of the gui elements
@ -38,6 +39,7 @@ struct MainMenuData
std::wstring port;
std::wstring name;
bool creative_mode;
bool enable_damage;
// If map deletion is requested, this is set to true
bool delete_map;
};