Remove stdext::packed_vector (#1106)

Co-authored-by: Kacper Piwiński <cosiekvfj@o2.pl>
This commit is contained in:
diath
2020-08-26 09:54:05 +02:00
committed by GitHub
parent 59059321a6
commit b3aaa10646
6 changed files with 4 additions and 171 deletions

View File

@@ -132,9 +132,9 @@ public:
private:
void checkTranslucentLight();
stdext::packed_vector<CreaturePtr> m_walkingCreatures;
stdext::packed_vector<EffectPtr> m_effects; // leave this outside m_things because it has no stackpos.
stdext::packed_vector<ThingPtr> m_things;
std::vector<CreaturePtr> m_walkingCreatures;
std::vector<EffectPtr> m_effects; // leave this outside m_things because it has no stackpos.
std::vector<ThingPtr> m_things;
Position m_position;
uint8 m_drawElevation;
uint8 m_minimapColor;