diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-18 13:26:04 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-18 13:26:04 +0100 |
commit | a444da0b35123a9e51cde1f5be9aab0204eb5b66 (patch) | |
tree | cb3c02bbd94b2750c57c4579de5f7f8def05f324 /src/crepe/api/Text.cpp | |
parent | f71769f7d2e9530a49295d0c0c86c2f6add069d8 (diff) | |
parent | 81404db80bbf9463c3d535ae389e7fbb753a902c (diff) |
merge master
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) {} |