mirror of
https://github.com/DarkStore-3DS/Project_CTR.git
synced 2026-07-05 00:39:04 +00:00
14 lines
345 B
C++
14 lines
345 B
C++
#pragma once
|
|
#include <tc/io/VirtualFileSystem.h>
|
|
|
|
namespace ntd { namespace n3ds {
|
|
|
|
struct ExeFsSnapshotGenerator : public tc::io::VirtualFileSystem::FileSystemSnapshot
|
|
{
|
|
public:
|
|
ExeFsSnapshotGenerator(const std::shared_ptr<tc::io::IStream>& stream, bool verify_hashes = true);
|
|
private:
|
|
ExeFsSnapshotGenerator();
|
|
};
|
|
|
|
}} // namespace ntd::n3ds
|