BioinstSim  2
 All Classes Functions Variables
aggregatebehavior.h
1 #ifndef AGGREGATEBEHAVIOR_H_
2 #define AGGREGATEBEHAVIOR_H_
3 
4 /******************************************************************************/
5 /******************************************************************************/
6 
7 #include "behavior.h"
8 
9 /******************************************************************************/
10 /******************************************************************************/
11 
13 {
14 public:
15  CAggregateBehavior(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 #endif