aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp13
1 files changed, 10 insertions, 3 deletions
diff --git a/main.cpp b/main.cpp
index 31616fa..d1fa143 100644
--- a/main.cpp
+++ b/main.cpp
@@ -1,10 +1,17 @@
#include <stdio.h>
-#include "geom.hpp"
-#include "problem.hpp"
+#include "ui.hpp"
int main() {
- printf("%.10f\n", M_PI);
+ hilare_a_param p;
+ p.l = 30;
+ p.r_c_car = 15;
+ p.r_c_trolley = 12;
+
+ UI the_ui(&p);
+
+ the_ui.run();
+
return 0;
}