2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-16 18:05:53 +00:00
2018-10-06 17:42:33 -10:00

24 lines
430 B
C++

#pragma once
#include "DataSpec/DNACommon/DNACommon.hpp"
#include "DNAMP1.hpp"
namespace DataSpec::DNAMP1
{
class AGSC
{
public:
struct Header : BigDNA
{
AT_DECL_DNA
String<-1> audioDir;
String<-1> groupName;
};
static bool Extract(PAKEntryReadStream& rs, const hecl::ProjectPath& outPath);
static bool Cook(const hecl::ProjectPath& inPath, const hecl::ProjectPath& outPath);
};
}