-------------------------------------------------------------------------------- Description: Return an array to all the damage locators on this hull --------------------------------------------------------------------------------
| 840 | // Return an array to all the damage locators on this hull |
| 841 | // -------------------------------------------------------------------------------- |
| 842 | const std::vector<EveSOFDataMgr::LocatorDirectionData>* EveSOFDNA::GetHullLocators( const char* setName, size_t n ) const |
| 843 | { |
| 844 | auto locatorSet = m_hullDatas[n]->locatorSets.find( BlueSharedString( setName ) ); |
| 845 | if( locatorSet == m_hullDatas[n]->locatorSets.end() ) |
| 846 | { |
| 847 | return nullptr; |
| 848 | } |
| 849 | return &locatorSet->second; |
| 850 | } |
| 851 | |
| 852 | |
| 853 | // -------------------------------------------------------------------------------- |
no test coverage detected