aboutsummaryrefslogtreecommitdiffstats
path: root/support/magicleap/Servo2D/code/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'support/magicleap/Servo2D/code/src/main.cpp')
-rw-r--r--support/magicleap/Servo2D/code/src/main.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/support/magicleap/Servo2D/code/src/main.cpp b/support/magicleap/Servo2D/code/src/main.cpp
new file mode 100644
index 00000000000..d8abed18c34
--- /dev/null
+++ b/support/magicleap/Servo2D/code/src/main.cpp
@@ -0,0 +1,13 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+#include <Servo2D.h>
+#include <ml_logging.h>
+
+int main(int argc, char **argv)
+{
+ ML_LOG(Debug, "Servo2D Starting.");
+ Servo2D myApp;
+ return myApp.run();
+}