2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-06-13 03:13:28 +00:00
2018-09-02 14:46:16 -10:00

19 lines
331 B
C++

#ifndef __DNAMP2_PAK_HPP__
#define __DNAMP2_PAK_HPP__
#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;
};
}
#endif // __DNAMP2_PAK_HPP__