mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-08 18:24:55 +00:00
Prelim CSimplePool RE work (needs verification)
This commit is contained in:
13
DataSpec/DNAMP2/AFSM.hpp
Normal file
13
DataSpec/DNAMP2/AFSM.hpp
Normal file
@@ -0,0 +1,13 @@
|
||||
#ifndef _DNAMP2_AFSM_HPP_
|
||||
#define _DNAMP2_AFSM_HPP_
|
||||
|
||||
#include "../DNAMP1/AFSM.hpp"
|
||||
|
||||
namespace Retro
|
||||
{
|
||||
namespace DNAMP2
|
||||
{
|
||||
using AFSM = DNAMP1::AFSM;
|
||||
}
|
||||
}
|
||||
#endif // _RETRO_AFSM_HPP_
|
||||
@@ -15,4 +15,5 @@ add_library(DNAMP2
|
||||
CMDL.hpp
|
||||
MREA.cpp
|
||||
MAPA.hpp
|
||||
AFSM.hpp
|
||||
STRG.hpp STRG.cpp)
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
#include "ANCS.hpp"
|
||||
#include "MREA.hpp"
|
||||
#include "MAPA.hpp"
|
||||
#include "AFSM.hpp"
|
||||
#include "../DNACommon/TXTR.hpp"
|
||||
|
||||
namespace Retro
|
||||
@@ -215,6 +216,8 @@ ResExtractor<PAKBridge> PAKBridge::LookupExtractor(const DNAMP1::PAK::Entry& ent
|
||||
return {STRG::Extract, nullptr, {_S(".yaml")}};
|
||||
case SBIG('TXTR'):
|
||||
return {TXTR::Extract, nullptr, {_S(".png")}};
|
||||
case SBIG('AFSM'):
|
||||
return {AFSM::Extract, nullptr, {_S(".yaml")}};
|
||||
case SBIG('CMDL'):
|
||||
return {nullptr, CMDL::Extract, {_S(".blend")}, 1};
|
||||
case SBIG('ANCS'):
|
||||
|
||||
Reference in New Issue
Block a user