diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-18 13:31:10 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-18 13:31:10 +0100 |
commit | 1a81eab8c0c4c0b6f7102ebceb68f259cfc595bb (patch) | |
tree | f3d62919e49cf154ff7e2a21606379b3db626440 /src/crepe/api/Text.cpp | |
parent | 1d182abe4278b6bf4410cb25a9ae41f501833990 (diff) | |
parent | 81404db80bbf9463c3d535ae389e7fbb753a902c (diff) |
Merge branch 'master' into loek/scripts
Diffstat (limited to 'src/crepe/api/Text.cpp')
-rw-r--r-- | src/crepe/api/Text.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/crepe/api/Text.cpp b/src/crepe/api/Text.cpp new file mode 100644 index 0000000..54a4370 --- /dev/null +++ b/src/crepe/api/Text.cpp @@ -0,0 +1,12 @@ +#include "../facade/FontFacade.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) + : UIObject(id, dimensions, offset), + text(text), + data(data), + font_family(font_family) {} |