You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
378 B
23 lines
378 B
#ifndef FRMSLIDEPUZZLEWIDGET_H
|
|
#define FRMSLIDEPUZZLEWIDGET_H
|
|
|
|
#include <QtWidgets/QWidget>
|
|
#include "ui_frmslidepuzzlewidget.h"
|
|
|
|
class FrmSlidePuzzleWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
FrmSlidePuzzleWidget(QWidget *parent = 0);
|
|
~FrmSlidePuzzleWidget();
|
|
|
|
private:
|
|
void initForm();
|
|
|
|
private:
|
|
Ui::FrmSlidePuzzleWidgetClass ui;
|
|
};
|
|
|
|
#endif // FRMSLIDEPUZZLEWIDGET_H
|