diff options
author | Max-001 <80035972+Max-001@users.noreply.github.com> | 2025-01-08 16:00:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-08 16:00:45 +0100 |
commit | e6666d662678239d1d0c4c71f271855fdcdc3800 (patch) | |
tree | d6effc80f9e989b8ca148958109100bb13d3cbab /src/crepe/api/Text.h | |
parent | 533be30e21d3b42732852e6879a8450c4f7e417b (diff) | |
parent | 099f9d42db9b15f1be2090ce2a8869ace871a644 (diff) |
Merge pull request #115 from lonkaars/loek/replay
replay for text components
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 |