class EE::Graphics::TextShapeRun

#include <text.hpp>

class TextShapeRun {
public:
    // construction

    TextShapeRun(String::View str, FontTrueType* font, Uint32 characterSize, Uint32 style, Float outlineThickness);

    // methods

    String::View curRun() const;
    bool hasNext() const;
    std::size_t pos() const;
    void next();
    bool runIsNewLine() const;
    FontTrueType* font();
};