2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-06-21 04:33:27 +00:00
2018-10-06 17:42:33 -10:00

17 lines
261 B
C++

#pragma once
#include "../DNAMP1/PAK.hpp"
namespace DataSpec::DNAMP2
{
/* Same PAK format as MP1 */
struct PAK : DNAMP1::PAK
{
using DNAMP1::PAK::PAK;
std::string bestEntryName(const nod::Node& pakNode, const Entry& entry, bool& named) const;
};
}