mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-07 11:22:45 +01:00
17 lines
306 B
C++
17 lines
306 B
C++
#include <QApplication>
|
|
#include <QStyleFactory>
|
|
#include "ViewerWindow.hpp"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication app(argc, argv);
|
|
|
|
/* HACK until Qt curve supports Qt5 */
|
|
QApplication::setStyle(QStyleFactory::create("GTK+"));
|
|
|
|
ViewerWindow viewer;
|
|
viewer.show();
|
|
|
|
return app.exec();
|
|
}
|