1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-03-25 16:43:33 +00:00
OpenMW/apps/openmw/mwgui/mainmenu.hpp
mrcheko b98cfe2d1b Revert "bug fix http://bugs.openmw.org/issues/428"
This reverts commit 8dd930cf97fc4a0fee398a31209fabf24ad7fcb1.
2013-12-20 22:39:02 +02:00

24 lines
401 B
C++

#include <openengine/gui/layout.hpp>
#include "imagebutton.hpp"
namespace MWGui
{
class MainMenu : public OEngine::GUI::Layout
{
public:
MainMenu(int w, int h);
void onResChange(int w, int h);
private:
MyGUI::Widget* mButtonBox;
std::map<std::string, MWGui::ImageButton*> mButtons;
void onButtonClicked (MyGUI::Widget* sender);
};
}