metaforce/DataSpec/DNAMP2/PAK.hpp

14 lines
301 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2015-07-06 01:33:06 +00:00
#include "../DNAMP1/PAK.hpp"
2018-12-08 05:30:43 +00:00
namespace DataSpec::DNAMP2 {
2015-07-06 01:33:06 +00:00
/* Same PAK format as MP1 */
2018-12-08 05:30:43 +00:00
struct PAK : DNAMP1::PAK {
using DNAMP1::PAK::PAK;
2019-10-01 07:38:03 +00:00
std::string bestEntryName(const nod::Node& pakNode, const Entry& entry, std::string& catalogueName) const;
};
2015-07-06 01:33:06 +00:00
2018-12-08 05:30:43 +00:00
} // namespace DataSpec::DNAMP2