diff options
author | Perttu Ahola <celeron55@gmail.com> | 2011-04-24 15:37:41 +0300 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2011-04-24 15:37:41 +0300 |
commit | c9967d6d07a4863f2278376b34bb68d86392e902 (patch) | |
tree | 58bc3c884d310dd045b170284eaa49bdf05d2a0b /src/guiMainMenu.h | |
parent | ba88685fab339acd471ade642d24d9ca7e794f04 (diff) | |
download | minetest-c9967d6d07a4863f2278376b34bb68d86392e902.tar.gz minetest-c9967d6d07a4863f2278376b34bb68d86392e902.tar.bz2 minetest-c9967d6d07a4863f2278376b34bb68d86392e902.zip |
updated menu a bit, and some other small fixes
Diffstat (limited to 'src/guiMainMenu.h')
-rw-r--r-- | src/guiMainMenu.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/guiMainMenu.h b/src/guiMainMenu.h index d003599c4..4999d68ba 100644 --- a/src/guiMainMenu.h +++ b/src/guiMainMenu.h @@ -30,14 +30,25 @@ with this program; if not, write to the Free Software Foundation, Inc., struct MainMenuData { MainMenuData(): + // Client opts + fancy_trees(false), + smooth_lighting(false), + // Server opts creative_mode(false), enable_damage(false), + // Actions delete_map(false) {} + // These are in the native format of the gui elements + + // Client options std::wstring address; std::wstring port; std::wstring name; + bool fancy_trees; + bool smooth_lighting; + // Server options bool creative_mode; bool enable_damage; // If map deletion is requested, this is set to true |