2018-10-25 00:19:38 +00:00
|
|
|
#ifndef DUST3D_ABOUT_WIDGET_H
|
|
|
|
#define DUST3D_ABOUT_WIDGET_H
|
2018-09-21 07:10:18 +00:00
|
|
|
#include <QDialog>
|
2018-04-10 07:59:20 +00:00
|
|
|
|
2018-09-21 07:10:18 +00:00
|
|
|
class AboutWidget : public QDialog
|
2018-04-10 07:59:20 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
AboutWidget();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|