mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-07 11:22:45 +01:00
6f9c3db52e
- Shared ViewerWidget has been removed. Now multiple instances exist
12 lines
238 B
C++
12 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();
|
|
}
|