2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2015-07-19 06:19:46 +00:00
|
|
|
|
|
|
|
#include "DNACommon.hpp"
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace DataSpec {
|
2015-08-22 01:58:41 +00:00
|
|
|
class PAKEntryReadStream;
|
2015-07-19 06:19:46 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
struct TXTR {
|
|
|
|
static bool Extract(PAKEntryReadStream& rs, const hecl::ProjectPath& outPath);
|
|
|
|
static bool Cook(const hecl::ProjectPath& inPath, const hecl::ProjectPath& outPath);
|
|
|
|
static bool CookPC(const hecl::ProjectPath& inPath, const hecl::ProjectPath& outPath);
|
2019-02-16 17:16:34 +00:00
|
|
|
static std::string CalculateDolphinName(PAKEntryReadStream& rs);
|
2015-07-19 06:19:46 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace DataSpec
|