mirror of
https://github.com/NanjingForestryUniversity/uppermachine-candy.git
synced 2025-11-08 14:24:15 +00:00
12 lines
191 B
C++
12 lines
191 B
C++
#include "widget.h"
|
|
#include <QApplication>
|
|
#include "initwidget.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
InitWidget w;
|
|
w.show();
|
|
return a.exec();
|
|
}
|