00001 #ifndef _3dsshape_hh_ 00002 #define _3dsshape_hh_ 00003 00004 #include "shape.hh" 00005 #include <GL/gl.h> 00006 00007 class o3dsShape: public Shape { 00008 private: 00009 GLuint display; 00010 public: 00011 virtual void redraw(); 00012 virtual void init(oConfiguration &c); 00013 }; 00014 00015 #endif