made first window work

This commit is contained in:
2026-01-17 16:36:56 +01:00
parent 53c7d564d7
commit 2611d3539e
4 changed files with 942 additions and 10 deletions

View File

@@ -1,10 +1,13 @@
#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; }
namespace TSE
{
#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)
inline std::string getVersionString() { return TSE_VERSION_STRING; }
} // namespace TSE