mirror of
https://github.com/rwengine/openrw.git
synced 2025-04-28 21:08:05 +03:00
11 lines
238 B
C++
11 lines
238 B
C++
#include <QApplication>
|
|
#include "ViewerWindow.hpp"
|
|
|
|
int main(int argc, char *argv[]) {
|
|
QCoreApplication::setAttribute(Qt::AA_ShareOpenGLContexts);
|
|
QApplication app(argc, argv);
|
|
|
|
ViewerWindow viewer;
|
|
|
|
return app.exec();
|
|
}
|