15 lines
357 B
C++
15 lines
357 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 {
|
|
public:
|
|
UIEmpty(UICanvas *canvas);
|
|
void drawSelf(UIShader *uiShader, glm::mat4 selfTransform) override;
|
|
};
|
|
} |