| 19 | class FontUnmanaged : public ::Font { |
| 20 | public: |
| 21 | FontUnmanaged( |
| 22 | int baseSize, |
| 23 | int glyphCount, |
| 24 | int glyphPadding, |
| 25 | ::Texture2D texture, |
| 26 | ::Rectangle* recs = nullptr, |
| 27 | ::GlyphInfo* glyphs = nullptr) |
| 28 | : ::Font{baseSize, glyphCount, glyphPadding, texture, recs, glyphs} { |
| 29 | // Nothing. |
| 30 | } |
| 31 | |
| 32 | /** |
| 33 | * Retrieves the default Font. |
nothing calls this directly
no outgoing calls
no test coverage detected