mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 19:27:44 +00:00
LibGfx: Add accessors for BitmapFont's rows and widths
This commit is contained in:
parent
599b2bee4a
commit
3d1591a822
1 changed files with 3 additions and 0 deletions
|
@ -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; }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue