From 1c138d80ac08dfc48f0916c568f780e15db73834 Mon Sep 17 00:00:00 2001 From: untodesu Date: Tue, 18 Mar 2025 13:55:21 +0500 Subject: Miscellaneous fixes --- game/shared/feature.hh | 2 ++ 1 file changed, 2 insertions(+) (limited to 'game/shared/feature.hh') diff --git a/game/shared/feature.hh b/game/shared/feature.hh index eb7cf2a..f5fe73b 100644 --- a/game/shared/feature.hh +++ b/game/shared/feature.hh @@ -11,6 +11,8 @@ class Feature final : public std::vector> { public: explicit Feature(void) = default; virtual ~Feature(void) = default; + +public: void place(const voxel_pos &vpos, Dimension *dimension, bool overwrite = false) const; void place(const voxel_pos &vpos, const chunk_pos &cpos, VoxelStorage &voxels, bool overwrite = false) const; }; -- cgit