refactor: unglob std::deque

This commit is contained in:
Tropical
2026-03-06 20:41:22 -06:00
parent 653a2c4289
commit 967ffbb2a6
8 changed files with 12 additions and 12 deletions
@@ -26,7 +26,7 @@ public:
protected:
Level *level;
private:
deque<std::shared_ptr<Particle> > particles[3][TEXTURE_COUNT]; // 4J made two arrays to cope with simultaneous two dimensions
std::deque<std::shared_ptr<Particle> > particles[3][TEXTURE_COUNT]; // 4J made two arrays to cope with simultaneous two dimensions
Textures *textures;
Random *random;