first commit of some basics
This commit is contained in:
10
TSE_Base/src/version.h
Normal file
10
TSE_Base/src/version.h
Normal file
@@ -0,0 +1,10 @@
|
||||
#pragma once
|
||||
#include <string>
|
||||
|
||||
#define TSE_VERSION_MAJOR 0
|
||||
#define TSE_VERSION_MINOR 0
|
||||
#define TSE_VERSION_BUILD 1
|
||||
|
||||
#define TSE_VERSION_STRING std::to_string(TSE_VERSION_MAJOR) + "." + std::to_string(TSE_VERSION_MINOR) + "." + std::to_string(TSE_VERSION_BUILD)
|
||||
|
||||
std::string getVersionString() { return TSE_VERSION_STRING; }
|
||||
Reference in New Issue
Block a user