mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 11:43:49 +00:00
* Adjustment: Initial CMake reworking.
This commit is contained in:
parent
516163fd5d
commit
d7cdf54661
5394 changed files with 2615532 additions and 8711 deletions
39
Engine/lib/bullet/examples/ExampleBrowser/ExampleEntries.h
Normal file
39
Engine/lib/bullet/examples/ExampleBrowser/ExampleEntries.h
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
|
||||
#ifndef EXAMPLE_ENTRIES_H
|
||||
#define EXAMPLE_ENTRIES_H
|
||||
|
||||
#include "../CommonInterfaces/CommonExampleInterface.h"
|
||||
|
||||
|
||||
|
||||
class ExampleEntriesAll : public ExampleEntries
|
||||
{
|
||||
|
||||
struct ExampleEntriesInternalData* m_data;
|
||||
|
||||
public:
|
||||
|
||||
ExampleEntriesAll();
|
||||
virtual ~ExampleEntriesAll();
|
||||
|
||||
static void registerExampleEntry(int menuLevel, const char* name,const char* description, CommonExampleInterface::CreateFunc* createFunc, int option=0);
|
||||
|
||||
virtual void initExampleEntries();
|
||||
|
||||
virtual void initOpenCLExampleEntries();
|
||||
|
||||
virtual int getNumRegisteredExamples();
|
||||
|
||||
virtual CommonExampleInterface::CreateFunc* getExampleCreateFunc(int index);
|
||||
|
||||
virtual const char* getExampleName(int index);
|
||||
|
||||
virtual const char* getExampleDescription(int index);
|
||||
|
||||
virtual int getExampleOption(int index);
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
||||
#endif //EXAMPLE_ENTRIES_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue