OpenGLExampleBrowser.h 467 B

1234567891011121314151617181920212223
  1. #ifndef OPENGL_BROWSER_GUI_H
  2. #define OPENGL_BROWSER_GUI_H
  3. #include "ExampleBrowserInterface.h"
  4. class OpenGLExampleBrowser : public ExampleBrowserInterface
  5. {
  6. public:
  7. OpenGLExampleBrowser(class ExampleEntries* examples);
  8. virtual ~OpenGLExampleBrowser();
  9. virtual CommonExampleInterface* getCurrentExample();
  10. virtual bool init(int argc, char* argv[]);
  11. virtual void update(float deltaTime);
  12. virtual bool requestedExit();
  13. };
  14. #endif //OPENGL_BROWSER_GUI_H