first commit of some basics

This commit is contained in:
2026-01-17 09:13:59 +01:00
parent f9bc556ad9
commit c770c62400
41 changed files with 13610 additions and 0 deletions

10
TSE_Base/src/version.h Normal file
View 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; }