Files
CosmicEngine/lib/All/JoltPhysics/TestFramework/Renderer/VertexShader.h

16 lines
336 B
C
Raw Normal View History

// Jolt Physics Library (https://github.com/jrouwe/JoltPhysics)
// SPDX-FileCopyrightText: 2024 Jorrit Rouwe
// SPDX-License-Identifier: MIT
#pragma once
#include <Jolt/Core/Reference.h>
/// Vertex shader handle
class VertexShader : public RefTarget<VertexShader>
{
public:
/// Destructor
virtual ~VertexShader() = default;
};