mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 21:19:57 +00:00
14 lines
173 B
C++
14 lines
173 B
C++
|
#include <QApplication>
|
||
|
|
||
|
#include "maindialog.h"
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
QApplication app(argc, argv);
|
||
|
|
||
|
MainDialog dialog;
|
||
|
return dialog.exec();
|
||
|
|
||
|
}
|
||
|
|