You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
18 lines
355 B
C++
18 lines
355 B
C++
// Copyright 2011-2020 Molecular Matters GmbH, all rights reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "xxhash.h"
|
|
// BEGIN EPIC MOD
|
|
#include "LC_Platform.h"
|
|
#include LC_PLATFORM_INCLUDE(LC_Foundation)
|
|
// END EPIC MOD
|
|
|
|
namespace Hashing
|
|
{
|
|
LC_ALWAYS_INLINE uint32_t Hash32(const void* input, size_t length, uint32_t seed)
|
|
{
|
|
return XXH32(input, length, seed);
|
|
}
|
|
}
|