Main Page | Class Hierarchy | Class List | File List | Class Members | File Members

animal.h

Go to the documentation of this file.
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

Generated on Sat Mar 13 15:00:10 2004 by doxygen 1.3.5