* Initializes the font with a blank surface. */
| 39 | * Initializes the font with a blank surface. |
| 40 | */ |
| 41 | Font::Font() : _surface(0), _width(0), _height(0), _spacing(0), _chars(), _monospace(false) |
| 42 | { |
| 43 | } |
| 44 | |
| 45 | /** |
| 46 | * Deletes the font's surface. |
nothing calls this directly
no outgoing calls
no test coverage detected