// Drawable star --------------------------------------------------------------- #ifndef __DRAWABLE_INITIALS_H__ #define __DRAWABLE_INITIALS_H__ #include "drawable.h" class Initials : public Drawable { public: Initials(const double pX = 0.0, const double pY = 0.0, const double pZ = 0.0); virtual void draw(); virtual void render(); static int DisplayListId; }; #endif // vim: set sts=4 sw=4 ts=8 ft=cpp: --------------------------------------------