forked from mirror/openmw-tes3mp
16 lines
261 B
C++
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;
|
|
}
|