mirror of
https://github.com/Linloir/SceneEditor.git
synced 2025-12-17 15:38:11 +08:00
14 lines
307 B
C++
14 lines
307 B
C++
#include "mainwindow.h"
|
|
#include <QtWidgets/QApplication>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
MainWindow w;
|
|
w.setWindowFlag(Qt::FramelessWindowHint);
|
|
w.setAttribute(Qt::WA_TranslucentBackground);
|
|
w.setMouseTracking(true);
|
|
w.show();
|
|
return a.exec();
|
|
}
|