diff options
author | Perttu Ahola <celeron55@gmail.com> | 2012-03-13 08:50:03 +0200 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2012-03-13 08:50:03 +0200 |
commit | eea3277b81625277b634d1f5409b46075ebe28ff (patch) | |
tree | 1cf193021af215f5bc79070bfcea7bbe3feaa61b /src/guiMainMenu.h | |
parent | 11b86f8d8a5ce8643b0d11390b5e51b4954105c8 (diff) | |
download | minetest-eea3277b81625277b634d1f5409b46075ebe28ff.tar.gz minetest-eea3277b81625277b634d1f5409b46075ebe28ff.tar.bz2 minetest-eea3277b81625277b634d1f5409b46075ebe28ff.zip |
Crude tab test in main menu (requires gui redesign for the additional tabs)
Diffstat (limited to 'src/guiMainMenu.h')
-rw-r--r-- | src/guiMainMenu.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/guiMainMenu.h b/src/guiMainMenu.h index 688e393ad..68f3ca0f3 100644 --- a/src/guiMainMenu.h +++ b/src/guiMainMenu.h @@ -83,6 +83,7 @@ public: bool OnEvent(const SEvent& event); void createNewWorld(std::wstring name, std::string gameid); void deleteWorld(WorldSpec spec); + int getTab(); private: MainMenuData *m_data; @@ -93,6 +94,8 @@ private: gui::IGUIElement* parent; s32 id; IMenuManager *menumgr; + + bool m_is_regenerating; }; #endif |