From 6c2abde5c99a236453b795abaa6d7d70105e31f7 Mon Sep 17 00:00:00 2001 From: untodesu Date: Fri, 26 Dec 2025 14:50:33 +0500 Subject: Just a big Ctrl+H refactoring --- src/game/shared/world/feature.hh | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/game/shared/world/feature.hh') diff --git a/src/game/shared/world/feature.hh b/src/game/shared/world/feature.hh index 0d28b20..b80869d 100644 --- a/src/game/shared/world/feature.hh +++ b/src/game/shared/world/feature.hh @@ -2,16 +2,11 @@ #include "shared/types.hh" -namespace world -{ class Chunk; class Dimension; class Voxel; class VoxelStorage; -} // namespace world -namespace world -{ class Feature final : public std::vector> { public: Feature(void) = default; @@ -22,4 +17,3 @@ public: void place(const voxel_pos& vpos, const chunk_pos& cpos, Chunk& chunk) const; void place(const voxel_pos& vpos, const chunk_pos& cpos, VoxelStorage& voxels) const; }; -} // namespace world -- cgit