1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 06:35:30 +00:00
OpenMW/apps/opencs/main.cpp

13 lines
185 B
C++
Raw Normal View History

2012-11-21 17:31:18 +01:00
2012-11-22 13:30:02 +01:00
#include "editor.hpp"
#include <QtGui/QApplication>
2012-11-21 17:31:18 +01:00
int main(int argc, char *argv[])
{
2012-11-22 13:30:02 +01:00
QApplication mApplication (argc, argv);
CS::Editor editor;
2012-11-21 17:31:18 +01:00
2012-11-22 13:30:02 +01:00
return editor.run();
2012-11-21 17:31:18 +01:00
}