Initial commit

This commit is contained in:
Anton Kamalov
2025-12-06 16:01:44 +03:00
parent 5d3506215c
commit e613b4f004
23 changed files with 14518 additions and 1 deletions

9
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();
}