yes
This commit is contained in:
19
Runtime/Includes/Core/UUID.h
git.filemode.normal_file
19
Runtime/Includes/Core/UUID.h
git.filemode.normal_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
|
||||
Reference in New Issue
Block a user