| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #ifndef EMPTY_BROWSER
- #define EMPTY_BROWSER
- #include "ExampleBrowserInterface.h"
- #include "EmptyExample.h"
- class EmptyBrowser : public ExampleBrowserInterface
- {
- public:
- EmptyExample m_emptyExample;
- virtual CommonExampleInterface* getCurrentExample()
- {
- return &m_emptyExample;
- }
- EmptyBrowser(class ExampleEntries* examples)
- {
- }
- virtual bool init(int /*argc*/, char* argv[])
- {
- return true;
- }
- virtual void update(float deltaTime)
- {
- m_emptyExample.stepSimulation(deltaTime);
- }
- virtual void updateGraphics()
- {
- }
- virtual bool requestedExit()
- {
- return false;
- }
- virtual void setSharedMemoryInterface(class SharedMemoryInterface* sharedMem)
- {
- }
- };
- #endif //EMPTY_BROWSER
|