refactor: unglob std::unordered_set

This commit is contained in:
Tropical
2026-03-06 12:13:01 -06:00
parent 49d02788c0
commit 0855e6ddf4
21 changed files with 34 additions and 34 deletions

View File

@@ -55,8 +55,8 @@ public:
private:
std::unordered_map<int, std::shared_ptr<Entity>, IntKeyHash2, IntKeyEq> entitiesById; // 4J - was IntHashMap
unordered_set<std::shared_ptr<Entity> > forced;
unordered_set<std::shared_ptr<Entity> > reEntries;
std::unordered_set<std::shared_ptr<Entity> > forced;
std::unordered_set<std::shared_ptr<Entity> > reEntries;
public:
virtual bool addEntity(std::shared_ptr<Entity> e);
@@ -82,7 +82,7 @@ protected:
public:
void animateTickDoWork(); // 4J added
unordered_set<int> chunksToAnimate; // 4J added
std::unordered_set<int> chunksToAnimate; // 4J added
public:
void removeAllPendingEntityRemovals();