10 lines
254 B
C
10 lines
254 B
C
// Jolt Physics Library (https://github.com/jrouwe/JoltPhysics)
|
|
// SPDX-FileCopyrightText: 2021 Jorrit Rouwe
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#pragma once
|
|
|
|
/// Convert DirectX error to readable text and alert
|
|
void FatalErrorIfFailed(HRESULT inHResult);
|
|
|