| 11 | std::vector<AnimClass*> AnimExt::AnimsWithAttachedParticles; |
| 12 | |
| 13 | AnimExt::ExtData::~ExtData() |
| 14 | { |
| 15 | this->DeleteAttachedSystem(); |
| 16 | |
| 17 | if (this->Invoker) |
| 18 | TechnoExt::ExtMap.Find(this->Invoker)->AnimRefCount--; |
| 19 | |
| 20 | if (this->ParentBuilding) |
| 21 | TechnoExt::ExtMap.Find(this->ParentBuilding)->AnimRefCount--; |
| 22 | } |
| 23 | |
| 24 | void AnimExt::ExtData::SetInvoker(TechnoClass* pInvoker) |
| 25 | { |
nothing calls this directly
no test coverage detected