diff options
author | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-12-16 19:36:40 +0100 |
---|---|---|
committer | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-12-16 19:36:40 +0100 |
commit | 56342ffab9daade7802b015ac83b9c47a8b9b18b (patch) | |
tree | 078724d631e51aa332710d403e3c3ba17cb25469 /src/crepe/api/Text.cpp | |
parent | 55f4aaf179cf723c5b703b0c4d848bf059ae190a (diff) |
make format
Diffstat (limited to 'src/crepe/api/Text.cpp')
-rw-r--r-- | src/crepe/api/Text.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/crepe/api/Text.cpp b/src/crepe/api/Text.cpp index e6db140..5b2befe 100644 --- a/src/crepe/api/Text.cpp +++ b/src/crepe/api/Text.cpp @@ -2,13 +2,11 @@ #include "Text.h" - using namespace crepe; Text::Text(game_object_id_t id, const vec2 & dimensions, const vec2 & offset, const std::string & text, const std::string & font_family, const Data & data) : UIObject(id, dimensions, offset), text(text), - data(data), - font(FontFacade::get_font_asset(font_family)) { -} + data(data), + font(FontFacade::get_font_asset(font_family)) {} |