Merge branch 'master' of https://vcs.maemo.org/git/vexed
[vexed] / howtoplay.cpp
1 #include "howtoplay.h"
2 #include "ui_howtoplay.h"
3
4 HowToPlay::HowToPlay(QWidget *parent) :
5     QDialog(parent),
6     ui(new Ui::HowToPlay)
7 {
8     ui->setupUi(this);
9 }
10
11 HowToPlay::~HowToPlay()
12 {
13     delete ui;
14 }