diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-25 17:26:20 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-25 17:26:20 +0200 |
commit | b31d7a677481b4a09168c43d203bfd6d7badf577 (patch) | |
tree | 13550fa7f33d21aea8a7b03981707db2c08fc9a2 /TileData.h | |
parent | c9f5ac8722190efeb58fda1eec9e6160d5204127 (diff) |
implement mementos snapshots
Diffstat (limited to 'TileData.h')
-rw-r--r-- | TileData.h | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -2,9 +2,20 @@ #include <string> +#include "Memento.h" + struct TileData { unsigned int x = 0; unsigned int y = 0; std::string type = ""; }; +class TileDataMemento : public Memento { + friend class Canvas; + +public: + TileDataMemento(const TileData & data) : data(data) {} +private: + TileData data; +}; + |