ARES / Mbed 2 deprecated Timer

Dependencies:   RoboClaw mbed

Fork of Robot2016_2-0 by ARES

Map/Objectifs/Objectif.cpp

Committer:
IceTeam
Date:
2016-01-05
Revision:
11:9c70a7f4d7aa

File content as of revision 11:9c70a7f4d7aa:

#include "Objectif.h"

Objectif::Objectif(float x, float y, float theta)
{
    this->x = x;
    this->y = y;
    this->theta = theta;
    done = false;
    active = true;
    id = -1;
}