1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-16 19:59:55 +00:00
openmw/apps/wizard/intropage.cpp

16 lines
261 B
C++

#include "intropage.hpp"
#include "mainwizard.hpp"
Wizard::IntroPage::IntroPage(MainWizard *wizard) :
QWizardPage(wizard),
mWizard(wizard)
{
setupUi(this);
}
int Wizard::IntroPage::nextId() const
{
return MainWizard::Page_MethodSelection;
}