Xinqi Bao's Git

first commit, implemented game wordscapes
[CheaterHub.git] / client / CheaterHub / setting.h
1 #ifndef SETTING_H
2 #define SETTING_H
3
4 #include "cfg.h"
5 #include <QDialog>
6
7 namespace Ui {
8 class Setting;
9 }
10
11 class Setting : public QDialog
12 {
13 Q_OBJECT
14
15 public:
16 explicit Setting(Cfg& cfg, QWidget *parent = nullptr);
17 ~Setting();
18
19 private:
20 Cfg& cfg;
21 Ui::Setting *ui;
22
23 public slots:
24 void update_setting();
25 };
26
27 #endif // SETTING_H