| 23 | } |
| 24 | |
| 25 | void AddonManager::ReinitializeAddons() { |
| 26 | // Loop through all addons and process any that match our type |
| 27 | for (std::vector<AddonBlock*>::iterator it = addons.begin(); it != addons.end(); it++) { |
| 28 | (*it)->ptr->reinit(); |
| 29 | } |
| 30 | } |
| 31 | |
| 32 | void AddonManager::PreprocessAddons() { |
| 33 | // Loop through all addons and process any that match our type |
no test coverage detected