mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-07 03:12:36 +01:00
14 lines
208 B
C++
14 lines
208 B
C++
#include <QApplication>
|
|
#include <QStyleFactory>
|
|
#include "ViewerWindow.hpp"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication app(argc, argv);
|
|
|
|
ViewerWindow viewer;
|
|
viewer.show();
|
|
|
|
return app.exec();
|
|
}
|