mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
12 lines
224 B
C++
12 lines
224 B
C++
#include <QApplication>
|
|
|
|
#include "panda_qt/main_window.hpp"
|
|
#include "panda_qt/screen.hpp"
|
|
|
|
int main(int argc, char *argv[]) {
|
|
QApplication app(argc, argv);
|
|
MainWindow window(&app);
|
|
|
|
window.show();
|
|
return app.exec();
|
|
}
|