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

20 lines
418 B
C++
Raw Normal View History

2022-09-18 01:23:17 +02:00
/*
* main.cpp, part of VCMI engine
*
* Authors: listed in file AUTHORS in main folder
*
* License: GNU General Public License v2.0 or later
* Full text of license available in license.txt file, in main folder
*
*/
#include "StdInc.h"
2024-03-29 07:48:52 +02:00
#include <QApplication>
2022-09-18 01:23:17 +02:00
#include "mainwindow.h"
int main(int argc, char * argv[])
{
QApplication vcmieditor(argc, argv);
2022-09-18 01:23:17 +02:00
MainWindow mainWindow;
return vcmieditor.exec();
2022-09-18 01:23:17 +02:00
}