mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-08 07:05:40 +12:00
13 lines
No EOL
233 B
C++
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
|