mirror of
https://github.com/huderlem/porymap.git
synced 2026-03-22 10:04:53 -05:00
23 lines
349 B
C++
23 lines
349 B
C++
#ifndef ABOUTPORYMAP_H
|
|
#define ABOUTPORYMAP_H
|
|
|
|
#include <QString>
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class AboutPorymap;
|
|
}
|
|
|
|
class AboutPorymap : public QDialog
|
|
{
|
|
public:
|
|
explicit AboutPorymap(QWidget *parent = nullptr);
|
|
~AboutPorymap();
|
|
|
|
static QString getVersionString();
|
|
private:
|
|
Ui::AboutPorymap *ui;
|
|
};
|
|
|
|
#endif // ABOUTPORYMAP_H
|