forked from mirror/openmw-tes3mp
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
401 B
C++
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);
|
|
};
|
|
|
|
}
|