Panda3DS/include/fs/romfs.hpp
2023-07-29 02:08:14 +03:00

13 lines
No EOL
233 B
C++

#pragma once
#include "helpers.hpp"
#include <vector>
namespace RomFS {
struct RomFSNode {
std::vector<RomFSNode> children;
};
RomFSNode parseRomFSTree(uintptr_t romFS, u64 romFSSize);
} // namespace RomFS