21 lines
477 B
C++
21 lines
477 B
C++
// Copyright (c) 2022 Dominic Masters
|
|
//
|
|
// This software is released under the MIT License.
|
|
// https://opensource.org/licenses/MIT
|
|
|
|
#pragma once
|
|
#include "UIComponent.hpp"
|
|
|
|
namespace Dawn {
|
|
class UIEmpty : public UIComponent {
|
|
protected:
|
|
std::vector<struct ShaderPassItem> getSelfPassItems(
|
|
glm::mat4 projection,
|
|
glm::mat4 view,
|
|
glm::mat4 transform
|
|
) override;
|
|
|
|
public:
|
|
UIEmpty(UICanvas *canvas);
|
|
};
|
|
} |