summaryrefslogtreecommitdiffstats
path: root/gui/server_normal/help.cpp
blob: 82423741101edd33d56e995ba4e0b952ef3385c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "help.h"
#include "ui_help.h"

help::help(QWidget *parent) :
	QWidget(parent),
	ui(new Ui::help)
{
	ui->setupUi(this);
}

help::~help()
{
	delete ui;
}