Dependencies:   Command Math OBROT RobotBase ShootingSystem Steering mbed

Revision:
0:bf802656c285
Child:
3:74976774f006
diff -r 000000000000 -r bf802656c285 main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Wed Oct 14 05:58:11 2015 +0000
@@ -0,0 +1,12 @@
+#include "OBROT.h"
+
+int main(){
+    OBROT::create();
+    OBROT* instance = OBROT::getInstance();
+    
+    while ( true ){
+        instance->update();
+    }
+    
+    return 0;
+}