mirror of https://github.com/AxioDL/metaforce.git
19 lines
363 B
C++
19 lines
363 B
C++
#ifndef __DNACOMMON_TXTR_HPP__
|
|
#define __DNACOMMON_TXTR_HPP__
|
|
|
|
#include "DNACommon.hpp"
|
|
|
|
namespace DataSpec
|
|
{
|
|
class PAKEntryReadStream;
|
|
|
|
struct TXTR
|
|
{
|
|
static bool Extract(PAKEntryReadStream& rs, const HECL::ProjectPath& outPath);
|
|
static bool Cook(const HECL::ProjectPath& inPath, const HECL::ProjectPath& outPath);
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __DNACOMMON_TXTR_HPP__
|