1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-22 22:13:35 +02:00
vcmi/mapeditor/playersettings.h

23 lines
309 B
C
Raw Normal View History

2022-09-04 18:16:36 +02:00
#ifndef PLAYERSETTINGS_H
#define PLAYERSETTINGS_H
#include <QDialog>
namespace Ui {
class PlayerSettings;
}
class PlayerSettings : public QDialog
{
Q_OBJECT
public:
explicit PlayerSettings(QWidget *parent = nullptr);
~PlayerSettings();
private:
Ui::PlayerSettings *ui;
};
#endif // PLAYERSETTINGS_H