summaryrefslogtreecommitdiffstats
path: root/game/shared/world/feature.hh
diff options
context:
space:
mode:
Diffstat (limited to 'game/shared/world/feature.hh')
-rw-r--r--game/shared/world/feature.hh25
1 files changed, 0 insertions, 25 deletions
diff --git a/game/shared/world/feature.hh b/game/shared/world/feature.hh
deleted file mode 100644
index a543632..0000000
--- a/game/shared/world/feature.hh
+++ /dev/null
@@ -1,25 +0,0 @@
-#pragma once
-
-#include "shared/types.hh"
-
-namespace world
-{
-class Chunk;
-class Dimension;
-class Voxel;
-class VoxelStorage;
-} // namespace world
-
-namespace world
-{
-class Feature final : public std::vector<std::tuple<voxel_pos, const Voxel*, bool>> {
-public:
- Feature(void) = default;
- virtual ~Feature(void) = default;
-
-public:
- void place(const voxel_pos& vpos, Dimension* dimension) const;
- 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