2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

Archives: Added some documentation to IVFCArchive

This commit is contained in:
Subv 2015-01-01 12:44:38 -05:00
parent aade417b14
commit 2f9a2d410d

View file

@ -16,6 +16,11 @@
namespace FileSys {
/**
* Helper which implements an interface to deal with IVFC images used in some archives
* This should be subclassed by concrete archive types, which will provide the
* input data (load the raw IVFC archive) and override any required methods
*/
class IVFCArchive : public ArchiveBackend {
public:
IVFCArchive();