diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-29 19:35:25 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-29 19:35:25 +0100 |
commit | ca6ff463979d5c250ab04e940bead875f11e7352 (patch) | |
tree | 479b06c90e1af3652c30e5554c3cada57ac81975 /src/chunk.cpp | |
parent | cd1e7b6564e8508f84e84706557b89eb5471a978 (diff) |
scenery wip
Diffstat (limited to 'src/chunk.cpp')
-rw-r--r-- | src/chunk.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/chunk.cpp b/src/chunk.cpp index 6a325125..55afe1b9 100644 --- a/src/chunk.cpp +++ b/src/chunk.cpp @@ -147,11 +147,13 @@ chunk& chunk::operator=(chunk&&) noexcept = default; void chunk::mark_ground_modified() noexcept { _ground_modified = true; } void chunk::mark_walls_modified() noexcept { _walls_modified = true; } +void chunk::mark_scenery_modified() noexcept { _scenery_modified = true; } void chunk::mark_modified() noexcept { mark_ground_modified(); mark_walls_modified(); + mark_scenery_modified(); } } // namespace floormat |