1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-07-02 16:38:41 +00:00

Add "simple singleplayer mode"; Fix a number of GUI things

This commit is contained in:
Perttu Ahola 2012-03-15 15:20:20 +02:00
parent 899004207d
commit 6298878bfa
9 changed files with 101 additions and 48 deletions

View file

@ -45,6 +45,7 @@ struct MainMenuData
bool creative_mode;
bool enable_damage;
int selected_world;
bool simple_singleplayer_mode;
// Actions
WorldSpec delete_world_spec;
std::wstring create_world_name;
@ -62,7 +63,8 @@ struct MainMenuData
// Server opts
creative_mode(false),
enable_damage(false),
selected_world(0)
selected_world(0),
simple_singleplayer_mode(false)
{}
};