1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-01-24 03:47:18 +02:00

12 lines
192 B
C++
Raw Normal View History

#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();
}