
#include <iostream>
#include <string>
using namespace std;
#ifndef Gerbil_h
#define Gerbil_h

#include "BasicEntity.h"
#include <iostream>
#include <string>
using namespace std;

class Gerbil : public BasicEntity
   {
    private:
		distance_vector sensor_point;
    public:
		Gerbil();
	   void move();  
	   void set_goal(distance_vector goal);  
	   void create(distance_vector init_locale);
   };

#endif
