Move files to include and src directories

This commit is contained in:
2025-12-25 20:31:08 +03:00
parent 5a1ab90730
commit a676333b3d
8 changed files with 27 additions and 24 deletions

9
src/main.cpp Normal file
View File

@@ -0,0 +1,9 @@
#include "DRAWer_2_0.h"
#include <QtWidgets/QApplication>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
DRAWer_2_0 window;
window.show();
return app.exec();
}