openrw/rwviewer/main.cpp

12 lines
238 B
C++
Raw Permalink Normal View History

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