mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
12 lines
No EOL
178 B
C++
12 lines
No EOL
178 B
C++
#pragma once
|
|
|
|
#include <QApplication>
|
|
#include <QDialog>
|
|
#include <QWidget>
|
|
|
|
class AboutWindow : public QDialog {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
AboutWindow(QWidget* parent = nullptr);
|
|
}; |