UGDK
|
00001 #ifndef UGDK_GRAPHIC_DRAWABLE_SHAPE_H_ 00002 #define UGDK_GRAPHIC_DRAWABLE_SHAPE_H_ 00003 00004 #include <ugdk/graphic/drawable.h> 00005 00006 namespace ugdk { 00007 namespace graphic { 00008 00009 class Shape : public Drawable { 00010 public: 00011 virtual ~Shape() {}; 00012 00013 protected: 00014 Shape() {} 00015 }; 00016 00017 } // namespace graphic 00018 } // namespace ugdk 00019 00020 #endif