ARES / Mbed 2 deprecated Robot 2016

Dependencies:   mbed

Revision:
0:b127c787a51b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Map/Obstacles/Obstacle.cpp	Sun May 24 12:30:47 2015 +0000
@@ -0,0 +1,15 @@
+#include "Obstacle.h"
+
+Obstacle::Obstacle(float robotRadius, int id)
+{
+    this->robotRadius = robotRadius;
+    this->id = id;
+    this->active = true;
+    bigShape = true;
+    smoothBigShape = false;
+}
+
+Obstacle::~Obstacle()
+{
+    
+}