mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-14 05:40:05 +00:00
efbb1edecc
Make shared memory client/server a bit more robust, in case the server is terminated early.
26 lines
548 B
C++
26 lines
548 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);
|
|
|
|
};
|
|
|
|
#endif //OPENGL_BROWSER_GUI_H
|