diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2025-01-07 10:37:52 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2025-01-07 10:37:52 +0100 |
commit | d46548ab15699f7ae91227625302553e79a126bc (patch) | |
tree | e5b05fc99dca66512cf76cce30bf905e2213de8b /src/crepe/api/Text.cpp | |
parent | c817f6ff091de9869c803868c50a9ea884ead376 (diff) | |
parent | 77d02bf2e2d5d04e8cacb3c783446541517e8e76 (diff) |
merge master
Diffstat (limited to 'src/crepe/api/Text.cpp')
-rw-r--r-- | src/crepe/api/Text.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/crepe/api/Text.cpp b/src/crepe/api/Text.cpp index b24f0ac..e5b623d 100644 --- a/src/crepe/api/Text.cpp +++ b/src/crepe/api/Text.cpp @@ -1,10 +1,12 @@ +#include "../types.h" + #include "Text.h" using namespace crepe; Text::Text( - game_object_id_t id, const vec2 & dimensions, const vec2 & offset, - const std::string & font_family, const Data & data, const std::string & text + game_object_id_t id, const vec2 & dimensions, const std::string & font_family, + const Data & data, const vec2 & offset, const std::string & text ) : UIObject(id, dimensions, offset), text(text), |