16 lines
263 B
C
16 lines
263 B
C
|
#ifndef EXPERTWIN_H
|
||
|
#define EXPERTWIN_H
|
||
|
|
||
|
#include "basewin.h"
|
||
|
|
||
|
class ExpertWin : public BaseWin {
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit ExpertWin(QWidget *parent = nullptr);
|
||
|
|
||
|
int screenWidth{1280}, screenHeight{720};
|
||
|
double rate{1};
|
||
|
};
|
||
|
|
||
|
#endif // EXPERTWIN_H
|