mirror of https://github.com/AxioDL/metaforce.git
Rename namespaces
This commit is contained in:
parent
4595b7b6ab
commit
af69c9d3ab
|
@ -65,7 +65,7 @@ set(DATA_SPEC_LIBS
|
|||
DNACommon)
|
||||
set(HECL_DATASPEC_DECLS
|
||||
"/* RetroCommon specs */
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
extern HECL::Database::DataSpecEntry SpecEntMP1;
|
||||
extern HECL::Database::DataSpecEntry SpecEntMP2;
|
||||
|
@ -73,9 +73,9 @@ namespace Retro
|
|||
}")
|
||||
set(HECL_DATASPEC_PUSHES
|
||||
" /* RetroCommon */
|
||||
HECL::Database::DATA_SPEC_REGISTRY.push_back(&Retro::SpecEntMP1);
|
||||
HECL::Database::DATA_SPEC_REGISTRY.push_back(&Retro::SpecEntMP2);
|
||||
HECL::Database::DATA_SPEC_REGISTRY.push_back(&Retro::SpecEntMP3);")
|
||||
HECL::Database::DATA_SPEC_REGISTRY.push_back(&DataSpec::SpecEntMP1);
|
||||
HECL::Database::DATA_SPEC_REGISTRY.push_back(&DataSpec::SpecEntMP2);
|
||||
HECL::Database::DATA_SPEC_REGISTRY.push_back(&DataSpec::SpecEntMP3);")
|
||||
add_subdirectory(hecl)
|
||||
add_subdirectory(libSpecter)
|
||||
set(SPECTER_INCLUDE_DIR libSpecter/include libSpecter/freetype2/include)
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
extern "C" uint8_t RETRO_MASTER_SHADER[];
|
||||
extern "C" size_t RETRO_MASTER_SHADER_SZ;
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace Blender
|
||||
{
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
#include <HECL/HECL.hpp>
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace Blender
|
||||
{
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#include "BlenderConnection.hpp"
|
||||
#include "CMDL.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAANCS
|
||||
{
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#include <math.h>
|
||||
#include "ANIM.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAANIM
|
||||
{
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
#include "DNACommon.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAANIM
|
||||
{
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#endif
|
||||
#include <math.h>
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
|
||||
template<class BabeDeadLight>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "CMDL.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNACMDL
|
||||
{
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include "GX.hpp"
|
||||
#include "TXTR.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNACMDL
|
||||
{
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "DNACommon.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
|
||||
LogVisor::LogModule LogDNACommon("Retro::DNACommon");
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#include "HECL/Database.hpp"
|
||||
#include "../SpecBase.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
|
||||
extern LogVisor::LogModule LogDNACommon;
|
||||
|
@ -364,30 +364,30 @@ typedef std::function<bool(const HECL::ProjectPath&, const HECL::ProjectPath&)>
|
|||
namespace std
|
||||
{
|
||||
template<>
|
||||
struct hash<Retro::DNAFourCC>
|
||||
struct hash<DataSpec::DNAFourCC>
|
||||
{
|
||||
size_t operator()(const Retro::DNAFourCC& fcc) const
|
||||
size_t operator()(const DataSpec::DNAFourCC& fcc) const
|
||||
{return fcc.toUint32();}
|
||||
};
|
||||
|
||||
template<>
|
||||
struct hash<Retro::UniqueID32>
|
||||
struct hash<DataSpec::UniqueID32>
|
||||
{
|
||||
size_t operator()(const Retro::UniqueID32& id) const
|
||||
size_t operator()(const DataSpec::UniqueID32& id) const
|
||||
{return id.toUint32();}
|
||||
};
|
||||
|
||||
template<>
|
||||
struct hash<Retro::UniqueID64>
|
||||
struct hash<DataSpec::UniqueID64>
|
||||
{
|
||||
size_t operator()(const Retro::UniqueID64& id) const
|
||||
size_t operator()(const DataSpec::UniqueID64& id) const
|
||||
{return id.toUint64();}
|
||||
};
|
||||
|
||||
template<>
|
||||
struct hash<Retro::UniqueID128>
|
||||
struct hash<DataSpec::UniqueID128>
|
||||
{
|
||||
size_t operator()(const Retro::UniqueID128& id) const
|
||||
size_t operator()(const DataSpec::UniqueID128& id) const
|
||||
{return id.toHighUint64() ^ id.toLowUint64();}
|
||||
};
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#include "DNACommon.hpp"
|
||||
#include "BlenderConnection.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
|
||||
template<class DEAFBABE>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
#include "DNACommon.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNACommon
|
||||
{
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#include "DNACommon.hpp"
|
||||
#include "GX.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMAPA
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "BlenderConnection.hpp"
|
||||
#include "CVector3f.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMLVL
|
||||
{
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
#include "DNACommon.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
|
||||
/* PAK entry stream reader */
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "PAK.hpp"
|
||||
#include "Athena/FileWriter.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAParticle
|
||||
{
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "ParticleCommon.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAParticle
|
||||
{
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
#include "DNACommon.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAParticle
|
||||
{
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
#include "../DNAMP2/STRG.hpp"
|
||||
#include "../DNAMP3/STRG.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
|
||||
std::unique_ptr<ISTRG> LoadSTRG(Athena::io::IStreamReader& reader)
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#include <Athena/FileWriter.hpp>
|
||||
#include "DNACommon.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
struct ISTRG : BigYAML
|
||||
{
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
#include "TXTR.hpp"
|
||||
#include "PAK.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
|
||||
static LogVisor::LogModule Log("libpng");
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
#include "DNACommon.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
class PAKEntryReadStream;
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
#include "../DNACommon.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
|
||||
struct ITweakGame : BigYAML
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
#include "../DNACommon.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
|
||||
struct ITweakParticle : BigYAML
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
#include "../DNACommon.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
|
||||
struct ITweakPlayer : BigYAML
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
#include "../DNACommon.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
|
||||
struct ITweakPlayerControl : BigYAML
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "../DNACommon/DNACommon.hpp"
|
||||
#include "DNAMP1.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "ANCS.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
#include "ANIM.hpp"
|
||||
#include "Athena/FileReader.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "ANIM.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#include "../DNACommon/ANIM.hpp"
|
||||
#include "CINF.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#include "BlenderConnection.hpp"
|
||||
#include "../DNACommon/DNACommon.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
#include <Athena/FileReader.hpp>
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
using Stream = HECL::BlenderConnection::PyOutStream;
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
@ -1299,7 +1299,7 @@ MaterialSet::Material::UVAnimation::UVAnimation(const std::string& gameFunction,
|
|||
}
|
||||
}
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP2
|
||||
{
|
||||
|
@ -1308,7 +1308,7 @@ void MaterialSet::ConstructMaterial(Stream& out,
|
|||
const MaterialSet::Material& material,
|
||||
unsigned groupIdx,
|
||||
unsigned matIdx)
|
||||
{Retro::DNAMP1::_ConstructMaterial(out, material, groupIdx, matIdx);}
|
||||
{DataSpec::DNAMP1::_ConstructMaterial(out, material, groupIdx, matIdx);}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#include "../DNACommon/CMDL.hpp"
|
||||
#include "DNAMP1.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "../DNACommon/DNACommon.hpp"
|
||||
#include "CINF.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
#include "MAPA.hpp"
|
||||
#include "FRME.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#include "../DNACommon/DNACommon.hpp"
|
||||
#include "PAK.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "DeafBabe.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
#include "../DNACommon/DeafBabe.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "EVNT.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#include "../DNACommon/DNACommon.hpp"
|
||||
#include "DNAMP1.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#include "FRME.hpp"
|
||||
#include "../DNACommon/TXTR.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "DNAMP1.hpp"
|
||||
#include <Athena/FileWriter.hpp>
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#include "../DNACommon/MAPA.hpp"
|
||||
#include "DNAMP1.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "../DNACommon/MLVL.hpp"
|
||||
#include "DNAMP1.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#endif
|
||||
#include <math.h>
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "CMDLMaterials.hpp"
|
||||
#include "CSKR.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
#include "DNAMP1.hpp"
|
||||
#include "PAK.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#include <NOD/DiscBase.hpp>
|
||||
#include "../DNACommon/PAK.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "../DNACommon/DNACommon.hpp"
|
||||
#include "DNAMP1.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#include "SCLY.hpp"
|
||||
#include "ScriptObjects/ScriptTypes.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "ScriptObjects/IScriptObject.hpp"
|
||||
#include "DNAMP1.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#include "STRG.hpp"
|
||||
#include "DNAMP1.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#include "../DNACommon/STRG.hpp"
|
||||
#include "DNAMP1.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue