Changeset 9546928 in opengl-game
- Timestamp:
- Sep 2, 2019, 4:55:09 PM (5 years ago)
- Branches:
- feature/imgui-sdl, master, points-test
- Children:
- 2beb6c7
- Parents:
- 76d19a8
- Files:
-
- 1 added
- 1 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
crash-logger.cpp
r76d19a8 r9546928 9 9 10 10 #include "Compiler.h" 11 #include " Consts.h"11 #include "consts.hpp" 12 12 13 13 // TODO: Double-check which includes are necessary -
game-gui-glfw.cpp
r76d19a8 r9546928 1 1 #include "game-gui-glfw.hpp" 2 3 #include "consts.hpp" 2 4 3 5 string GameGui_GLFW::s_errorMessage; -
game-gui-sdl.cpp
r76d19a8 r9546928 1 1 #include "game-gui-sdl.hpp" 2 3 #include "consts.hpp" 2 4 3 5 string GameGui_SDL::s_errorMessage; -
game-gui.hpp
r76d19a8 r9546928 1 1 #ifndef _GAME_GUI_H 2 2 #define _GAME_GUI_H 3 4 #include <string> 5 #include <vector> 3 6 4 7 #ifdef GAMEGUI_INCLUDE_VULKAN … … 6 9 #endif 7 10 8 #include <string> 9 #include <vector> 11 #include "consts.hpp" 10 12 11 13 using namespace std; 12 13 #define RTWO_SUCCESS true14 #define RTWO_ERROR false15 14 16 15 class GameGui {
Note:
See TracChangeset
for help on using the changeset viewer.