| 328 | } |
| 329 | |
| 330 | void FontExportSerializer::removeFont(std::string_view _fontName) |
| 331 | { |
| 332 | MyGUI::ResourceManager& manager = MyGUI::ResourceManager::getInstance(); |
| 333 | if (manager.isExist(_fontName)) |
| 334 | manager.removeByName(_fontName); |
| 335 | } |
| 336 | |
| 337 | } |
nothing calls this directly
no test coverage detected