mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-22 22:13:35 +02:00
23 lines
309 B
C
23 lines
309 B
C
|
#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
|