mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-08 23:25:40 +12:00
18 lines
No EOL
332 B
C++
18 lines
No EOL
332 B
C++
#include <QApplication>
|
|
#include <QtWidgets>
|
|
|
|
#include "panda_qt/screen.hpp"
|
|
|
|
int main(int argc, char *argv[]) {
|
|
QApplication app(argc, argv);
|
|
QWidget window;
|
|
|
|
window.resize(320, 240);
|
|
window.show();
|
|
window.setWindowTitle("Alber");
|
|
ScreenWidget screen(&window);
|
|
screen.show();
|
|
screen.resize(320, 240);
|
|
|
|
return app.exec();
|
|
} |