mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 04:19:55 +00:00
16 lines
263 B
C++
16 lines
263 B
C++
#include <openengine/gui/layout.hpp>
|
|
|
|
namespace MWGui
|
|
{
|
|
|
|
class MainMenu : public OEngine::GUI::Layout
|
|
{
|
|
public:
|
|
MainMenu(int w, int h)
|
|
: Layout("openmw_mainmenu_layout.xml")
|
|
{
|
|
setCoord(0,0,w,h);
|
|
}
|
|
};
|
|
|
|
}
|