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:
parent
899004207d
commit
6298878bfa
9 changed files with 101 additions and 48 deletions
|
@ -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)
|
||||
{}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue