1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-21 10:23:56 +00:00
openmw/apps/opencs/main.cpp
2012-11-22 13:30:02 +01:00

13 lines
No EOL
185 B
C++

#include "editor.hpp"
#include <QtGui/QApplication>
int main(int argc, char *argv[])
{
QApplication mApplication (argc, argv);
CS::Editor editor;
return editor.run();
}