Files
LNXSDK/lib/haxejolt/JoltPhysics/Jolt/Core/ObjectToIDMap.h
2026-03-04 00:50:15 -08:00

22 lines
422 B
C++

// Jolt Physics Library (https://github.com/jrouwe/JoltPhysics)
// SPDX-FileCopyrightText: 2026 Jorrit Rouwe
// SPDX-License-Identifier: MIT
#pragma once
#include <Jolt/Core/UnorderedMapFwd.h>
JPH_NAMESPACE_BEGIN
namespace StreamUtils {
template <class Type>
using ObjectToIDMap = UnorderedMap<const Type *, uint32>;
template <class Type>
using IDToObjectMap = Array<Ref<Type>>;
} // StreamUtils
JPH_NAMESPACE_END