1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-24 08:32:34 +02:00
vcmi/editor/Main.cpp

12 lines
192 B
C++

#include "StdInc.h"
#include "Editor.h"
#include <QtWidgets/QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Editor w;
w.show();
return a.exec();
}