Panda3DS/src/panda_qt/main.cpp

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();
}