Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members  

Leg.h

Go to the documentation of this file.
00001 #ifndef _LEG_H_
00002 #define _LEG_H_
00003 
00004 #include "Object.h"
00005 
00006 class Leg : public Object
00007 {
00008  public:
00009   Leg(string filename);
00010   virtual ~Leg();
00011 
00012   virtual void draw();
00013 
00014   bool getDirection() { return _direction; }
00015   void setDirection(bool d) { _direction = d; }
00016 
00017  protected:
00018   bool _direction;
00019 };
00020 
00021 #endif

Generated on Wed Apr 21 11:10:53 2004 for naturecalls by doxygen1.2.18