/* * Author: Josh Holtrop * DornerWorks screensaver * The LogoBox class */ #ifndef LOGOBOX_H #define LOGOBOX_H #include class LogoBox { public: LogoBox(); ~LogoBox(); void draw(); const float * const getAABB() const; float getWidth() const; float getHeight() const; float getDepth() const; }; #endif