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