LEBLOND MALO p2405951 1063962e61 Merge branch 'feature/Path' into 'feature/step'
# Conflicts:
#   sae201.pro
2025-06-18 13:13:17 +00:00

17 lines
211 B
C++

#include "mainwindow.h"
#include "path.h"
#include <QApplication>
#include <step.h>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}