mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-20 20:54:46 +00:00
39 lines
579 B
C
39 lines
579 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 bool requestedExit()
|
||
|
|
{
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif //EMPTY_BROWSER
|