Files
OpenVulkano/openVulkanoCpp/Scene/Prefabs/GridDrawable.hpp
2024-07-06 14:08:20 +02:00

23 lines
473 B
C++

/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
#pragma once
#include "Scene/Drawable.hpp"
#include "Scene/Shader/Shader.hpp"
namespace OpenVulkano::Scene
{
class GridDrawable : public Drawable
{
Shader m_shader;
public:
GridDrawable();
[[nodiscard]] Shader& GetShader() { return m_shader; }
};
}