a
Dependencies: mbed
Diff: Map/Map.h
- Revision:
- 0:85567bbcebdb
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Map/Map.h Sun Dec 14 17:49:01 2014 +0000 @@ -0,0 +1,19 @@ + +#ifndef MAP_H_ +#define MAP_H_ + +#include "Obstacle.h" +#include "LinkedList.h" + + +class Map +{ + public: + Map(); + + private: + LinkedList<Obstacle*> ll_obstacle; +}; + + +#endif