/
redgpu
/
bullet
Обзор
Документация
Войти
/
redgpu
/
bullet
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/ExampleBrowser/OpenGLExampleBrowser.h
29 строк
743 B
erwincoumans
Code-style consistency improvement:
24 сен 2018, 00:17
24 сен 2018, 00:17
ab8f169
Код
Авторство
О чём код?
#ifndef OPENGL_BROWSER_GUI_H #define OPENGL_BROWSER_GUI_H #include "ExampleBrowserInterface.h" class OpenGLExampleBrowser : public ExampleBrowserInterface { struct OpenGLExampleBrowserInternalData* m_internalData; public: OpenGLExampleBrowser(class ExampleEntries* examples); virtual ~OpenGLExampleBrowser(); virtual CommonExampleInterface* getCurrentExample(); virtual bool init(int argc, char* argv[]); virtual void update(float deltaTime); virtual void updateGraphics(); virtual bool requestedExit(); virtual void setSharedMemoryInterface(class SharedMemoryInterface* sharedMem); static void registerFileImporter(const char* extension, CommonExampleInterface::CreateFunc* createFunc); }; #endif //OPENGL_BROWSER_GUI_H