| 15 | std::vector<ShieldClass*> ShieldClass::Array; |
| 16 | |
| 17 | ShieldClass::ShieldClass() |
| 18 | : Techno { nullptr } |
| 19 | , HP { 0 } |
| 20 | , Timers { } |
| 21 | , AreAnimsHidden { false } |
| 22 | { |
| 23 | ShieldClass::Array.emplace_back(this); |
| 24 | } |
| 25 | |
| 26 | ShieldClass::ShieldClass(TechnoClass* pTechno, bool isAttached) |
| 27 | : Techno { pTechno } |
nothing calls this directly
no test coverage detected