mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-13 21:30:09 +00:00
46 lines
703 B
C++
46 lines
703 B
C++
#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
|