Unravel Engine C++ Reference
Loading...
Searching...
No Matches
version.cpp
Go to the documentation of this file.
1#include "version.h"
2
3namespace version
4{
5 std::string get_major()
6 {
7 return VERSION_MAJOR;
8 }
9
10 std::string get_minor()
11 {
12 return VERSION_MINOR;
13 }
14
15 std::string get_patch()
16 {
17 return VERSION_PATCH;
18 }
19
20 std::string get_full()
21 {
22 return VERSION;
23 }
24}
std::string get_minor()
Definition version.cpp:10
std::string get_full()
Definition version.cpp:20
std::string get_major()
Definition version.cpp:5
std::string get_patch()
Definition version.cpp:15