mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-18 17:40:48 +02:00
15 lines
231 B
C++
15 lines
231 B
C++
|
#include "playersettings.h"
|
||
|
#include "ui_playersettings.h"
|
||
|
|
||
|
PlayerSettings::PlayerSettings(QWidget *parent) :
|
||
|
QDialog(parent),
|
||
|
ui(new Ui::PlayerSettings)
|
||
|
{
|
||
|
ui->setupUi(this);
|
||
|
}
|
||
|
|
||
|
PlayerSettings::~PlayerSettings()
|
||
|
{
|
||
|
delete ui;
|
||
|
}
|