BioinstSim  2
 All Classes Functions Variables
dispersebehavior.h
1 #ifndef DISPERSEBEHAVIOR_H_
2 #define DISPERSEBEHAVIOR_H_
3 
4 /******************************************************************************/
5 /******************************************************************************/
6 
7 #include "behavior.h"
8 
9 /******************************************************************************/
10 /******************************************************************************/
11 
13 {
14 public:
15  CDisperseBehavior(double f_sensory_radius);
16 
17  virtual void SimulationStep();
18  virtual bool TakeControl();
19  virtual void Action();
20 
21 protected:
22  double m_fSensoryRadius;
23  TVector2d m_tCenterOfMass;
24 
25 };
26 
27 
28 /******************************************************************************/
29 /******************************************************************************/
30 
31 #endif