MCPcopy Create free account
hub / github.com/bulletphysics/bullet3 / ExampleEntry

Class ExampleEntry

examples/ExampleBrowser/ExampleEntries.cpp:117–134  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

115#include "../Evolution/NN3DWalkers.h"
116
117struct ExampleEntry
118{
119 int m_menuLevel;
120 const char* m_name;
121 const char* m_description;
122 CommonExampleInterface::CreateFunc* m_createFunc;
123 int m_option;
124
125 ExampleEntry(int menuLevel, const char* name)
126 : m_menuLevel(menuLevel), m_name(name), m_description(0), m_createFunc(0), m_option(0)
127 {
128 }
129
130 ExampleEntry(int menuLevel, const char* name, const char* description, CommonExampleInterface::CreateFunc* createFunc, int option = 0)
131 : m_menuLevel(menuLevel), m_name(name), m_description(description), m_createFunc(createFunc), m_option(option)
132 {
133 }
134};
135
136static ExampleEntry gDefaultExamples[] =
137 {

Callers 1

ExampleEntries.cppFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected