This commit is contained in:
Kbz-8
2025-06-16 15:18:27 +02:00
parent 15510fa8a7
commit cd7e5ad26f
165 changed files with 78107 additions and 0 deletions

19
Runtime/Includes/Core/UUID.h git.filemode.normal_file
View File

@@ -0,0 +1,19 @@
#ifndef __SCOP_CORE_UUID__
#define __SCOP_CORE_UUID__
#include <cstdint>
namespace Scop
{
class UUID
{
public:
UUID();
inline operator std::uint64_t() const noexcept { return m_uuid; }
private:
std::uint64_t m_uuid;
};
}
#endif