source: opengl-game/consts.hpp@ 9546928

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

Move some constants into consts.hpp

  • Property mode set to 100644
File size: 311 bytes
Line 
1#ifndef _RTWO_CONSTS_H
2#define _RTWO_CONSTS_H
3
4#define GAME_VERSION "0.01.000"
5
6#define RTWO_SUCCESS true
7#define RTWO_ERROR false
8
9// TODO: Would prefer to use enums, but couldn't find a great way to use them in bitmasks
10constexpr unsigned char GUI_FLAGS_WINDOW_FULLSCREEN { 1 << 0 };
11
12#endif // _RTWO_CONSTS_H
Note: See TracBrowser for help on using the repository browser.