mirror of
https://github.com/rwengine/openrw.git
synced 2025-04-29 05:18:04 +03:00
12 lines
218 B
C++
12 lines
218 B
C++
#include <QApplication>
|
|
#include <QStyleFactory>
|
|
#include "ViewerWindow.hpp"
|
|
|
|
int main(int argc, char *argv[]) {
|
|
QApplication app(argc, argv);
|
|
|
|
ViewerWindow viewer;
|
|
viewer.show();
|
|
|
|
return app.exec();
|
|
}
|