00001 00008 #ifndef _ANIMAL_H 00009 #define _ANIMAL_H 00010 00011 #include "object.h" 00012 00013 class Animal : public Object { 00014 public: 00015 Animal(Model *model, Vec3 position, double mass); 00016 00021 void step(Vec3 dir); 00022 protected: 00023 double _speed; 00024 }; 00025 00026 #endif // header guard