source: opengl-game/opengl-game.hpp@ d02c25f

feature/imgui-sdl points-test
Last change on this file since d02c25f was d02c25f, checked in by Dmitry Portnoy <dmitry.portnoy@…>, 5 years ago

Create openglgame, which will be the original opengl+glfw game, but refactored to make simplify its conversion to vulkan

  • Property mode set to 100644
File size: 208 bytes
Line 
1#ifndef _OPENGL_GAME_H
2#define _OPENGL_GAME_H
3
4#include "game-gui-glfw.hpp"
5
6class OpenGLGame {
7 public:
8 OpenGLGame();
9 ~OpenGLGame();
10
11 void run();
12
13 private:
14};
15
16#endif // _OPENGL_GAME_H
Note: See TracBrowser for help on using the repository browser.