| 30 | } |
| 31 | |
| 32 | void AddonManager::PreprocessAddons() { |
| 33 | // Loop through all addons and process any that match our type |
| 34 | for (std::vector<AddonBlock*>::iterator it = addons.begin(); it != addons.end(); it++) { |
| 35 | (*it)->ptr->preprocess(); |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | void AddonManager::ProcessAddons() { |
| 40 | // Loop through all addons and process any that match our type |
no test coverage detected