early-access version 1975

This commit is contained in:
pineappleEA
2021-08-08 03:14:23 +02:00
parent 411aeec047
commit 9145020787
5 changed files with 181 additions and 498 deletions

View File

@@ -69,3 +69,14 @@ struct UUID {
static_assert(sizeof(UUID) == 16, "UUID is an invalid size!");
} // namespace Common
namespace std {
template <>
struct hash<Common::UUID> {
size_t operator()(const Common::UUID& uuid) const noexcept {
return uuid.uuid[1] ^ uuid.uuid[0];
}
};
} // namespace std