diff options
author | heavydemon21 <48092678+heavydemon21@users.noreply.github.com> | 2024-12-19 16:24:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-19 16:24:53 +0100 |
commit | c737b01035cb62712b1dabcfef6f5014bdc882d1 (patch) | |
tree | 74c84fbf6715a4a47154d79e3c8df2c312eca1d4 /src/crepe/api | |
parent | 794efc4ef7a44b190a4d9ecc2dd84a66c62ab005 (diff) | |
parent | 1b98253b58a077618aabcf9dfe073495b8db8d4f (diff) |
Merge pull request #86 from lonkaars/niels/UI
Text rendering
Diffstat (limited to 'src/crepe/api')
-rw-r--r-- | src/crepe/api/Script.cpp | 1 | ||||
-rw-r--r-- | src/crepe/api/Text.cpp | 2 | ||||
-rw-r--r-- | src/crepe/api/Text.h | 2 |
3 files changed, 0 insertions, 5 deletions
diff --git a/src/crepe/api/Script.cpp b/src/crepe/api/Script.cpp index 85016f5..7531388 100644 --- a/src/crepe/api/Script.cpp +++ b/src/crepe/api/Script.cpp @@ -40,4 +40,3 @@ bool Script::get_key_state(Keycode key) const noexcept { return false; } } - diff --git a/src/crepe/api/Text.cpp b/src/crepe/api/Text.cpp index 54a4370..4a94180 100644 --- a/src/crepe/api/Text.cpp +++ b/src/crepe/api/Text.cpp @@ -1,5 +1,3 @@ -#include "../facade/FontFacade.h" - #include "Text.h" using namespace crepe; diff --git a/src/crepe/api/Text.h b/src/crepe/api/Text.h index c30dc80..da40141 100644 --- a/src/crepe/api/Text.h +++ b/src/crepe/api/Text.h @@ -3,8 +3,6 @@ #include <optional> #include <string> -#include "../Component.h" - #include "Asset.h" #include "Color.h" #include "UIObject.h" |