Files
TSE/TSE_Base/src/IdGenerator.cpp
2026-01-17 13:48:25 +01:00

9 lines
169 B
C++

#include "IdGenerator.hpp"
std::mt19937 rnd = std::mt19937();
auto gen = uuids::uuid_random_generator(rnd);
uuids::uuid TSE::GenerateRandomUUID()
{
return gen();
}