#pragma once #include "font.h" #include "glContainer.h" #include "uiComponent.h" #include #include #include #include class UIShader; union SDL_Event; class Text : public UIComponent { public: Text(std::string_view s, const Font &, Position, glm::vec3 colour); void render(const UIShader &, const Position & parentPos) const override; bool handleInput(const SDL_Event &, const Position & parentPos) override; Text & operator=(const std::string_view s); private: std::vector>> models; glContainer quads; glVertexArray vao; glm::vec3 colour; const Font & font; };