loader: Add accessor for Manual RomFS

This commit is contained in:
Zach Hilman 2018-12-24 16:19:41 -05:00
parent 621b25b6be
commit 4c20a39828
5 changed files with 30 additions and 0 deletions

View file

@ -259,6 +259,15 @@ public:
return ResultStatus::ErrorNotImplemented;
}
/**
* Get the RomFS of the manual of the application
* @param file The raw manual RomFS of the game
* @return ResultStatus result of function
*/
virtual ResultStatus ReadManualRomFS(FileSys::VirtualFile& file) {
return ResultStatus::ErrorNotImplemented;
}
protected:
FileSys::VirtualFile file;
bool is_loaded = false;