1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-10-12 01:06:32 +00:00
openmw-tes3mp/apps/openmw/mwgui/mainmenu.hpp
2013-12-20 22:39:02 +02:00

23 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);
};
}