From 893176a0b18a2281abe09def716ccc3db5583c3f Mon Sep 17 00:00:00 2001 From: Julian T Date: Sun, 26 Jul 2020 12:56:27 +0200 Subject: Implemented object intersection and startet work on render gui --- app/main.cpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 app/main.cpp (limited to 'app/main.cpp') diff --git a/app/main.cpp b/app/main.cpp new file mode 100644 index 0000000..15262f2 --- /dev/null +++ b/app/main.cpp @@ -0,0 +1,17 @@ +#include +#include +#include + +#include "mainwindow.hpp" + +using namespace std; + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + + MainWindow main; + main.show(); + + return a.exec(); +} -- cgit v1.2.3