Ark Server API (ASA) - Wiki
Loading...
Searching...
No Matches
GetTypeHashable.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreTypes.h"
6#include "Templates/TypeHash.h"
7
8/**
9 * Describes a type with a GetTypeHash overload.
10 */
11struct CGetTypeHashable {
12 template <typename T>
13 auto Requires(uint32& Result, const T& Val) -> decltype(
14 Result = GetTypeHash(Val)
15 );
16};