aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/facade/Font.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe/facade/Font.h')
-rw-r--r--src/crepe/facade/Font.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/crepe/facade/Font.h b/src/crepe/facade/Font.h
index 3eff3c6..b08366d 100644
--- a/src/crepe/facade/Font.h
+++ b/src/crepe/facade/Font.h
@@ -3,7 +3,6 @@
#include <SDL2/SDL_ttf.h>
#include <functional>
#include <memory>
-#include <string>
#include "../Resource.h"
@@ -35,8 +34,6 @@ public:
*/
TTF_Font * get_font() const;
- const std::string & get_path() const noexcept;
-
private:
//! The SDL_ttf font object with custom deleter.
std::unique_ptr<TTF_Font, std::function<void(TTF_Font *)>> font = nullptr;