diff options
Diffstat (limited to 'include/mglpp/graphics/Font.hpp')
-rw-r--r-- | include/mglpp/graphics/Font.hpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/mglpp/graphics/Font.hpp b/include/mglpp/graphics/Font.hpp index af70115..6818277 100644 --- a/include/mglpp/graphics/Font.hpp +++ b/include/mglpp/graphics/Font.hpp @@ -1,8 +1,6 @@ #ifndef MGLPP_FONT_HPP #define MGLPP_FONT_HPP -#include <string> - extern "C" { #include <mgl/graphics/font.h> } @@ -13,7 +11,7 @@ namespace mgl { Font(); ~Font(); - bool load_from_file(const std::string &filepath, unsigned int character_size); + bool load_from_file(const char *filepath, unsigned int character_size); unsigned int get_character_size() const; mgl_font* internal_font(); |