| 81 | |
| 82 | |
| 83 | bool EffectManager::IsHidden(const PluginID & ID) |
| 84 | { |
| 85 | if(auto effect = GetEffect(ID)) |
| 86 | return effect->GetDefinition().IsHiddenFromMenus(); |
| 87 | return false; |
| 88 | } |
| 89 | |
| 90 | void EffectManager::SetSkipStateFlag(bool flag) |
| 91 | { |
no test coverage detected