18 lines
312 B
C
Raw Permalink Normal View History

2025-06-05 10:06:43 +08:00
#pragma once
#include "defines.h"
#include <string>
class Guid
{
public:
GUID Data;
Guid();
Guid(GUID guid);
Guid(std::string str);
static Guid NewGuid();
static Guid Parse(const std::string& input);
std::string ToString();
bool operator==(const Guid& other);
bool operator!=(const Guid& other);
};