mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-08 18:24:55 +00:00
Additional extract directory tier for level names
This commit is contained in:
@@ -19,18 +19,23 @@ class PAKBridge
|
||||
PAK m_pak;
|
||||
UniqueResult uniqueCheck(const PAK::Entry& entry);
|
||||
public:
|
||||
struct Area
|
||||
struct Level
|
||||
{
|
||||
HECL::SystemString name;
|
||||
struct Layer
|
||||
struct Area
|
||||
{
|
||||
HECL::SystemString name;
|
||||
struct Layer
|
||||
{
|
||||
HECL::SystemString name;
|
||||
std::unordered_set<UniqueID64> resources;
|
||||
};
|
||||
std::vector<Layer> layers;
|
||||
std::unordered_set<UniqueID64> resources;
|
||||
};
|
||||
std::vector<Layer> layers;
|
||||
std::unordered_set<UniqueID64> resources;
|
||||
std::unordered_map<UniqueID64, Area> areas;
|
||||
};
|
||||
std::unordered_map<UniqueID64, Area> m_areaDeps;
|
||||
std::unordered_map<UniqueID64, Level> m_levelDeps;
|
||||
HECL::SystemString m_levelString;
|
||||
|
||||
PAKBridge(HECL::Database::Project& project, const NOD::DiscBase::IPartition::Node& node);
|
||||
|
||||
Reference in New Issue
Block a user