Changeset d8cb15e in opengl-game for opengl-game.hpp
- Timestamp:
- Aug 30, 2019, 7:30:53 PM (6 years ago)
- Branches:
- feature/imgui-sdl, master, points-test
- Children:
- 5529ab5
- Parents:
- d5f2b42
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
opengl-game.hpp
rd5f2b42 rd8cb15e 3 3 4 4 #include "game-gui-glfw.hpp" 5 6 const int SCREEN_WIDTH = 800; 7 const int SCREEN_HEIGHT = 600; 5 8 6 9 class OpenGLGame { … … 12 15 13 16 private: 17 GameGui* gui; 18 GLFWwindow* window; 19 20 bool initWindow(); 21 void initOpenGL(); 22 void mainLoop(); 23 void cleanup(); 14 24 }; 15 25
Note:
See TracChangeset
for help on using the changeset viewer.