mirror of https://github.com/AxioDL/metaforce.git
19 lines
331 B
C++
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__
|