Changeset 2beb6c7 in opengl-game
- Timestamp:
- Sep 2, 2019, 5:18:37 PM (5 years ago)
- Branches:
- feature/imgui-sdl, master, points-test
- Children:
- 5edbd58
- Parents:
- 9546928
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
consts.hpp
r9546928 r2beb6c7 7 7 #define RTWO_ERROR false 8 8 9 #define CRASH_LOG_FILE "crash.log" 10 9 11 // TODO: Would prefer to use enums, but couldn't find a great way to use them in bitmasks 10 12 constexpr unsigned char GUI_FLAGS_WINDOW_FULLSCREEN { 1 << 0 }; -
crash-logger.hpp
r9546928 r2beb6c7 1 1 #ifndef CRASH_LOGGER_H 2 2 #define CRASH_LOGGER_H 3 4 #define CRASH_LOG_FILE "crash.log"5 3 6 4 class CrashLogger { -
game-gui.hpp
r9546928 r2beb6c7 8 8 #include <vulkan/vulkan.h> 9 9 #endif 10 11 #include "consts.hpp"12 10 13 11 using namespace std;
Note:
See TracChangeset
for help on using the changeset viewer.