| 115 | #include "../Evolution/NN3DWalkers.h" |
| 116 | |
| 117 | struct 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 | |
| 136 | static ExampleEntry gDefaultExamples[] = |
| 137 | { |