summaryrefslogtreecommitdiffhomepage
path: root/src/chunk.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/chunk.hpp')
-rw-r--r--src/chunk.hpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/chunk.hpp b/src/chunk.hpp
index 497c0181..5b0e6d74 100644
--- a/src/chunk.hpp
+++ b/src/chunk.hpp
@@ -108,15 +108,12 @@ struct chunk final
requires requires(F fun) { fun(); }
void with_scenery_update(entity& e, F&& fun);
- using entity_vector = std::vector<std::shared_ptr<entity>>;
- using entity_const_iterator = typename entity_vector::const_iterator;
-
[[nodiscard]] bool can_place_entity(const entity_proto& proto, local_coords pos);
void add_entity(const std::shared_ptr<entity>& e);
void add_entity_unsorted(const std::shared_ptr<entity>& e);
void sort_entities();
- void remove_entity(entity_const_iterator it);
+ void remove_entity(std::size_t i);
const std::vector<std::shared_ptr<entity>>& entities() const;
private: