1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-19 17:01:44 +02:00
openrw/rwviewer/main.cpp

13 lines
218 B
C++
Raw Normal View History

2014-02-10 13:41:05 +01:00
#include <QApplication>
2014-02-10 17:15:22 +01:00
#include <QStyleFactory>
2014-02-10 13:41:05 +01:00
#include "ViewerWindow.hpp"
2013-09-26 23:30:15 +02:00
2016-09-09 22:13:21 +02:00
int main(int argc, char *argv[]) {
QApplication app(argc, argv);
ViewerWindow viewer;
viewer.show();
return app.exec();
2013-09-26 23:30:15 +02:00
}