added basic structures

This commit is contained in:
2026-01-17 13:48:25 +01:00
parent 0e4689cf35
commit 53c7d564d7
23 changed files with 2247 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#include "IdGenerator.hpp"
std::mt19937 rnd = std::mt19937();
auto gen = uuids::uuid_random_generator(rnd);
uuids::uuid TSE::GenerateRandomUUID()
{
return gen();
}

View File

@@ -0,0 +1,8 @@
#pragma once
#include "uuid.h"
namespace TSE
{
uuids::uuid GenerateRandomUUID();
} // namespace TSE