#ifndef CUBE_H #define CUBE_H #include "object.h" class Cube : public Object { public: Cube(dWorldID world,dSpaceID space,dReal width,dReal height,dReal depth,dReal mass); unsigned char color[3]; protected: virtual void renderInLocalFrame() const; }; #endif // CUBE_H