| 4 | #include "../Window.h" |
| 5 | |
| 6 | TextComponent::TextComponent(Window* window) : GuiComponent(window), |
| 7 | mFont(NULL), mColor(0x000000FF), mAutoCalcExtent(true, true), mCentered(false) |
| 8 | { |
| 9 | } |
| 10 | |
| 11 | TextComponent::TextComponent(Window* window, const std::string& text, std::shared_ptr<Font> font, Eigen::Vector3f pos, Eigen::Vector2f size) : GuiComponent(window), |
| 12 | mFont(NULL), mColor(0x000000FF), mAutoCalcExtent(true, true), mCentered(false) |
nothing calls this directly
no outgoing calls
no test coverage detected