qt/ledset/expertwin.h

16 lines
263 B
C
Raw Normal View History

2022-08-25 18:43:03 +08:00
#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