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