mirror of
https://github.com/huderlem/porymap.git
synced 2026-03-21 17:45:44 -05:00
20 lines
299 B
C++
20 lines
299 B
C++
#ifndef ABOUTPORYMAP_H
|
|
#define ABOUTPORYMAP_H
|
|
|
|
#include <QMainWindow>
|
|
|
|
namespace Ui {
|
|
class AboutPorymap;
|
|
}
|
|
|
|
class AboutPorymap : public QMainWindow {
|
|
public:
|
|
explicit AboutPorymap(QWidget* parent = nullptr);
|
|
~AboutPorymap();
|
|
|
|
private:
|
|
Ui::AboutPorymap* ui;
|
|
};
|
|
|
|
#endif // ABOUTPORYMAP_H
|