// Copyright (c) 2023 Dominic Masters // // This software is released under the MIT License. // https://opensource.org/licenses/MIT #pragma once #include "ui/UIAlign.hpp" #include "display/shader/UIShader.hpp" namespace Dawn { class UICanvas; class UIComponent { protected: virtual std::vector getSelfQuads( const glm::mat4 transform ) = 0; virtual std::vector> getChildren(); std::vector getQuads( const glm::mat4 parent ); public: glm::vec2 position; friend class UICanvas; }; }