diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2025-01-08 15:55:05 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2025-01-08 15:55:05 +0100 |
commit | 099f9d42db9b15f1be2090ce2a8869ace871a644 (patch) | |
tree | 7fa85f9d28d630c37624d1ef70088e4c59fd61d2 /src/crepe/api/Text.h | |
parent | 26fe39ef4e633206a9b202d431c969c66052d2ef (diff) |
replay for text componentsloek/replay
Diffstat (limited to 'src/crepe/api/Text.h')
-rw-r--r-- | src/crepe/api/Text.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/crepe/api/Text.h b/src/crepe/api/Text.h index 8b3d53e..859490e 100644 --- a/src/crepe/api/Text.h +++ b/src/crepe/api/Text.h @@ -49,6 +49,12 @@ public: std::optional<Asset> font; //! Data instance Data data; + +protected: + virtual std::unique_ptr<Component> save() const; + Text(const Text &) = default; + virtual void restore(const Component & snapshot); + virtual Text & operator=(const Text &); }; } // namespace crepe |