a

Dependencies:   mbed

Committer:
Jagang
Date:
Sun Dec 14 17:49:01 2014 +0000
Revision:
0:85567bbcebdb
New

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Jagang 0:85567bbcebdb 1 #include "Obstacle.h"
Jagang 0:85567bbcebdb 2
Jagang 0:85567bbcebdb 3 Obstacle::Obstacle(float robotWidth)
Jagang 0:85567bbcebdb 4 {
Jagang 0:85567bbcebdb 5 this->robotWidth = robotWidth;
Jagang 0:85567bbcebdb 6 bigShape = true;
Jagang 0:85567bbcebdb 7
Jagang 0:85567bbcebdb 8 lastId++;
Jagang 0:85567bbcebdb 9 id = lastId;
Jagang 0:85567bbcebdb 10 }
Jagang 0:85567bbcebdb 11