diff options
author | heavydemon21 <nielsstunnebrink1@gmail.com> | 2024-12-17 13:36:35 +0100 |
---|---|---|
committer | heavydemon21 <nielsstunnebrink1@gmail.com> | 2024-12-17 13:36:35 +0100 |
commit | 31fe4b1d44a7a7114c7ef8c0c5310a6070214cb2 (patch) | |
tree | 14564711f3ce996ccb1000e3f4f07d265e6fab88 /src/crepe/api/Text.h | |
parent | 0c02511f6a64766174cb0db3beb4cc159d3efdf7 (diff) | |
parent | 69ca7fdd738fd4ed98aefc07bab5a43486a55619 (diff) |
Merge branch 'wouter/text-component' into niels/UI
Diffstat (limited to 'src/crepe/api/Text.h')
-rw-r--r-- | src/crepe/api/Text.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/crepe/api/Text.h b/src/crepe/api/Text.h index ab72bc0..92cca18 100644 --- a/src/crepe/api/Text.h +++ b/src/crepe/api/Text.h @@ -1,7 +1,7 @@ #pragma once +#include <optional> #include <string> -#include <optional> #include "../Component.h" @@ -50,10 +50,10 @@ public: * \param data Data struct containing extra text parameters. * \param font Optional font asset that can be passed or left empty. */ - Text(game_object_id_t id, const vec2 & dimensions, const vec2 & offset, - const std::string & font_family, const Data & data, - const std::string & text = "", std::optional<Asset> font = std::nullopt); - + Text(game_object_id_t id, const vec2 & dimensions, const vec2 & offset, + const std::string & font_family, const Data & data, const std::string & text = "", + std::optional<Asset> font = std::nullopt); + //! Label text. std::string text = ""; //! font family name @@ -62,7 +62,6 @@ public: std::optional<Asset> font; //! Data instance Data data; - }; } // namespace crepe |