mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-05 03:34:34 +00:00
12 lines
293 B
C++
12 lines
293 B
C++
// Jolt Physics Library (https://github.com/jrouwe/JoltPhysics)
|
|
// SPDX-FileCopyrightText: 2021 Jorrit Rouwe
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#pragma once
|
|
|
|
#include <Jolt/Core/Reference.h>
|
|
|
|
class Surface;
|
|
|
|
/// Image routines, loads a Targa (TGA) file.
|
|
Ref<Surface> LoadTGA(istream &inStream);
|