sandbox
Loading...
Searching...
No Matches
version.hpp
1#ifndef SBX_CORE_VERSION_HPP_
2#define SBX_CORE_VERSION_HPP_
3
4#define SBX_CORE_VERSION_MAJOR 0
5#define SBX_CORE_VERSION_MINOR 1
6#define SBX_CORE_VERSION_PATCH 0
7
8#define SBX_CORE_VERSION ((0 << 16) | (1 << 8) | 0)
9
10#define SBX_CORE_VERSION_STRING "0.1.0"
11
12#endif // SBX_CORE_VERSION_HPP_