mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
12 lines
192 B
C++
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();
|
|
}
|