| 354 | } |
| 355 | |
| 356 | bool AbyssEngine::fileExists(const std::string_view file_path) { |
| 357 | std::string path(file_path); |
| 358 | absl::AsciiStrToLower(&path); |
| 359 | absl::StrReplaceAll({{"{lang_font}", _locale}, {"{lang}", _lang}}, &path); |
| 360 | return _fileProvider.fileExists(path); |
| 361 | } |
| 362 | |
| 363 | void AbyssEngine::setCursorImage(const std::string_view cursorName) { _cursorImage = _cursors[cursorName.data()].get(); } |
| 364 |
no outgoing calls
no test coverage detected