11 lines
205 B
C++
11 lines
205 B
C++
#include "LandslideTrain.h"
|
|
#include <QtWidgets/QApplication>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
LandslideTrain w;
|
|
w.CenterWidget()->show();
|
|
return a.exec();
|
|
}
|