LibGfx: Add accessors for BitmapFont's rows and widths

This commit is contained in:
thankyouverycool 2022-03-17 07:50:30 -04:00 committed by Andreas Kling
commit 3d1591a822
Notes: sideshowbarker 2024-07-17 17:14:18 +09:00

View file

@ -31,6 +31,9 @@ public:
~BitmapFont();
u8* rows() { return m_rows; }
u8* widths() { return m_glyph_widths; }
u8 presentation_size() const override { return m_presentation_size; }
void set_presentation_size(u8 size) { m_presentation_size = size; }