00001 #ifndef __BEHAVIOR_COHESION_HPP__ 00002 #define __BEHAVIOR_COHESION_HPP__ 00003 00004 #include "behavior.hpp" 00005 00006 using namespace std; 00007 00016 class B_Cohesion : public Behavior { 00017 public: 00021 B_Cohesion(); 00022 00034 AnimalParam action(Animal_ &anim, list<Animal_> &family, 00035 list<Animal_> &opponent, Obstacles &obs); 00036 }; 00037 00038 00039 00040 #endif