| 105 | } |
| 106 | |
| 107 | void AssetPackManager::Swap(size_t index, size_t otherIndex) |
| 108 | { |
| 109 | if (index < _assetPacks.size() && otherIndex < _assetPacks.size() && index != otherIndex) |
| 110 | { |
| 111 | std::swap(_assetPacks[index], _assetPacks[otherIndex]); |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | void AssetPackManager::LoadSamplesForObject(std::string_view id, AudioSampleTable& objectTable) |
| 116 | { |
no test coverage detected