mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-14 13:50:04 +00:00
6a9c54c4ef
Small refactoring for ExampleBrowser: move examples cpp files in the app/executable Move ExtendedTutorials in its own app/executable as a test.
27 lines
655 B
C++
27 lines
655 B
C++
#ifndef OPENGL_BROWSER_GUI_H
|
|
#define OPENGL_BROWSER_GUI_H
|
|
|
|
#include "ExampleBrowserInterface.h"
|
|
|
|
class OpenGLExampleBrowser : public ExampleBrowserInterface
|
|
{
|
|
public:
|
|
|
|
OpenGLExampleBrowser(class ExampleEntries* examples);
|
|
virtual ~OpenGLExampleBrowser();
|
|
|
|
virtual CommonExampleInterface* getCurrentExample();
|
|
|
|
virtual bool init(int argc, char* argv[]);
|
|
|
|
virtual void update(float deltaTime);
|
|
|
|
virtual bool requestedExit();
|
|
|
|
virtual void setSharedMemoryInterface(class SharedMemoryInterface* sharedMem);
|
|
|
|
static void registerFileImporter(const char* extension, CommonExampleInterface::CreateFunc* createFunc);
|
|
};
|
|
|
|
#endif //OPENGL_BROWSER_GUI_H
|