Jolt Physics
A multi core friendly Game Physics Engine
Loading...
Searching...
No Matches
UnorderedSetFwd.h
Go to the documentation of this file.
1// Jolt Physics Library (https://github.com/jrouwe/JoltPhysics)
2// SPDX-FileCopyrightText: 2026 Jorrit Rouwe
3// SPDX-License-Identifier: MIT
4
5#pragma once
6
8
9// Forward declaration of UnorderedSet (defined in UnorderedSet.h).
10// This is provided because compiling UnorderedSet.h can be expensive due to its use of templates.
11template <class Key, class Hash = JPH::Hash<Key>, class KeyEqual = std::equal_to<Key>>
12class UnorderedSet;
13
#define JPH_NAMESPACE_END
Definition Core.h:425
#define JPH_NAMESPACE_BEGIN
Definition Core.h:419
Definition UnorderedSet.h:30