-------------------------------------------------------------------------------- Description: Return an array to all the damage locators on this hull --------------------------------------------------------------------------------
| 793 | // Return an array to all the damage locators on this hull |
| 794 | // -------------------------------------------------------------------------------- |
| 795 | const std::vector<BlueSharedString> EveSOFDNA::GetHullLocatorSetNames( size_t n ) const |
| 796 | { |
| 797 | std::vector<BlueSharedString> locatorNames; |
| 798 | |
| 799 | for( auto locatorSet = m_hullDatas[n]->locatorSets.begin(); locatorSet != m_hullDatas[n]->locatorSets.end(); ++locatorSet ) |
| 800 | { |
| 801 | locatorNames.push_back( locatorSet->first ); |
| 802 | } |
| 803 | return locatorNames; |
| 804 | } |
| 805 | |
| 806 | // -------------------------------------------------------------------------------- |
| 807 | const Vector3* EveSOFDNA::GetHullNextSubsystemOffset( size_t n ) const |
no test coverage detected