diff options
author | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-12-16 18:28:56 +0100 |
---|---|---|
committer | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-12-16 18:28:56 +0100 |
commit | 7f7f1237532b4318361e69349cc38f34fe981803 (patch) | |
tree | c37a06a5d7ad8a99e3185a2b9c7e8ec776f31d9d | |
parent | 1c201e9bd0c1017386c8eb6bd97cd638d84ff1ab (diff) |
headers to c file change
-rw-r--r-- | src/crepe/facade/SDLFontContext.cpp | 2 | ||||
-rw-r--r-- | src/crepe/facade/SDLFontContext.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/crepe/facade/SDLFontContext.cpp b/src/crepe/facade/SDLFontContext.cpp index e0b9a89..45d70cb 100644 --- a/src/crepe/facade/SDLFontContext.cpp +++ b/src/crepe/facade/SDLFontContext.cpp @@ -1,4 +1,6 @@ #include <stdexcept> +#include <SDL2/SDL_ttf.h> +#include <fontconfig/fontconfig.h> #include "SDLFontContext.h" diff --git a/src/crepe/facade/SDLFontContext.h b/src/crepe/facade/SDLFontContext.h index cb3ca9d..d15e1a3 100644 --- a/src/crepe/facade/SDLFontContext.h +++ b/src/crepe/facade/SDLFontContext.h @@ -1,7 +1,6 @@ #pragma once -#include <SDL2/SDL_ttf.h> -#include <fontconfig/fontconfig.h> + #include <memory> #include "../api/Asset.h" @@ -25,7 +24,6 @@ public: */ Asset get_font_asset(const std::string font_family); -private: }; } // namespace crepe |