forked from mirror/openmw-tes3mp
14 lines
236 B
C++
14 lines
236 B
C++
#include "intropage.hpp"
|
|
|
|
#include "mainwizard.hpp"
|
|
|
|
Wizard::IntroPage::IntroPage(QWidget *parent) :
|
|
QWizardPage(parent)
|
|
{
|
|
setupUi(this);
|
|
}
|
|
|
|
int Wizard::IntroPage::nextId() const
|
|
{
|
|
return MainWizard::Page_MethodSelection;
|
|
}
|