Dawn/src/dawn/ui/UIRectangle.hpp

20 lines
519 B
C++

// Copyright (c) 2023 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#pragma once
#include "ui/UIComponent.hpp"
namespace Dawn {
class UIRectangle final : public UIComponent {
protected:
void getSelfQuads(const glm::vec2 t, UICanvas &ctx) override;
public:
struct Color color = COLOR_WHITE;
std::shared_ptr<Texture> texture = nullptr;
glm::vec2 size = glm::vec2(32, 32);
glm::vec4 uv = glm::vec4(0,0,1,1);
};
}