mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-08 07:05:40 +12:00
16 lines
No EOL
248 B
C++
16 lines
No EOL
248 B
C++
#pragma once
|
|
|
|
#include <QApplication>
|
|
#include <QtWidgets>
|
|
|
|
#include "panda_qt/screen.hpp"
|
|
|
|
class MainWindow : public QMainWindow {
|
|
Q_OBJECT
|
|
|
|
private:
|
|
ScreenWidget screen;
|
|
|
|
public:
|
|
MainWindow(QApplication* app, QWidget* parent = nullptr);
|
|
}; |