refactor: unglob std::deque

This commit is contained in:
Tropical
2026-03-08 22:43:59 +01:00
committed by JuiceyDev
parent a05a15eb73
commit cce3b0fdfe
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;